Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 170 for other2 (0.35 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Previously, when using the `main` source set, new `implementation`, `compileOnly`, `runtimeOnly`, `api`, and `compileOnlyApi` configurations were created, and the compile and runtime classpaths of the `main` source set were configured to extend these configurations.
    
    Starting in Gradle 9.0, the `main` source set will be treated like any other source set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Default permissions differ for files and directories:
    
    * *file*: read & write for *owner*, read for *group*, read for *other* (*0644*, *rw-r--r--*)
    * *directory*: read, write & execute for *owner*, read & execute for *group*, read & execute for *other* (*0755*, *rwxr-xr-x*)
    
    [[sec:moving_files_example]]
    == Moving files and directories
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		// makes it easier to grow out a contiguous range
    		// without running in to some other mapping.
    		//
    		// 2. This makes Go heap addresses more easily
    		// recognizable when debugging.
    		//
    		// 3. Stack scanning in gccgo is still conservative,
    		// so it's important that addresses be distinguishable
    		// from other data.
    		//
    		// Starting at 0x00c0 means that the valid memory addresses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Each variable is defined as a named CEL expression.
    	// The variables defined here will be available under `variables` in other expressions of the policy
    	// except MatchConditions because MatchConditions are evaluated before the rest of the policy.
    	//
    	// The expression of a variable can refer to other variables defined earlier in the list but not those after.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	minPages := physPageSize / pageSize
    	if minPages < 1 {
    		minPages = 1
    	}
    
    	lock(p.mheapLock)
    	if p.summary[len(p.summary)-1][ci].max() >= uint(minPages) {
    		// We only bother looking for a candidate if there at least
    		// minPages free pages at all.
    		base, npages := p.chunkOf(ci).findScavengeCandidate(searchIdx, minPages, maxPages)
    
    		// If we found something, scavenge it and return!
    		if npages != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    	}
    	return podsAdded, stateOut, nodeInfoOut, nil
    }
    
    // RunPreScorePlugins runs the set of configured pre-score plugins. If any
    // of these plugins returns any status other than Success/Skip, the given pod is rejected.
    // When it returns Skip status, other fields in status are just ignored,
    // and coupled Score plugin will be skipped in this scheduling cycle.
    func (f *frameworkImpl) RunPreScorePlugins(
    	ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	p.want(_Semi)
    
    	// don't bother continuing if package clause has errors
    	if p.first != nil {
    		return nil
    	}
    
    	// Accept import declarations anywhere for error tolerance, but complain.
    	// { ( ImportDecl | TopLevelDecl ) ";" }
    	prev := _Import
    	for p.tok != _EOF {
    		if p.tok == _Import && prev != _Import {
    			p.syntaxError("imports must appear before other declarations")
    		}
    		prev = p.tok
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

      }
    
      /**
       * Returns the elements of {@code unfiltered} that satisfy a predicate. The returned set is a live
       * view of {@code unfiltered}; changes to one affect the other.
       *
       * <p>The resulting set's iterator does not support {@code remove()}, but all other set methods
       * are supported. When given an element that doesn't satisfy the predicate, the set's {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      // Move binary op before reshape: reshape -> binary => binary -> reshape.
      // This is valid only when the binary operand is constant and the shape is the
      // tail of the other operand and the intermediate result isn't used by other
      // ops.
      // $rhs is required to be the tail shape of $lhs, so after transformation the
      // shape of the binary op result is valid. For example, assume the shapes of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. cmd/iam.go

    	parentUsersMap := sys.store.GetAllParentUsers()
    	var expiredUsers []string
    	for parentUser, puInfo := range parentUsersMap {
    		// There are multiple role ARNs for parent user only when there
    		// are multiple openid provider configurations with the same ID
    		// provider. We lookup the provider associated with some one of
    		// the roleARNs to check if the user still exists. If they don't
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top