Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 299 for sameId (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    If an element of the iterable implements `link:{javadocPath}/org/gradle/api/Named.html[Named]`, then the name is used as property name.
    The ordering of the elements in the iterable is crucial for reliable up-to-date checks and caching if not all of the elements implement `link:{javadocPath}/org/gradle/api/Named.html[Named]`.
    Multiple elements which have the same name are not allowed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    		if i < len(sub) {
    			istr, iflags = p.leadingString(sub[i])
    			if iflags == strflags {
    				same := 0
    				for same < len(str) && same < len(istr) && str[same] == istr[same] {
    					same++
    				}
    				if same > 0 {
    					// Matches at least one rune in current range.
    					// Keep going around.
    					str = str[:same]
    					continue
    				}
    			}
    		}
    
    		// Found end of a run with common leading literal string:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    				msg = "missing type parameter name"
    				if len(list) == 1 {
    					msg += " or invalid array length"
    				}
    			}
    			p.error(errPos, msg)
    		}
    	} else if named != len(list) {
    		// some named or we're in a type parameter list => all must be named
    		var errPos token.Pos // left-most error position (or invalid)
    		var typ ast.Expr     // current type (from right to left)
    		for i := len(list) - 1; i >= 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // 	  "import", "let", "loop", "package", "namespace", "return".
      // Examples:
      //   - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"}
      //   - Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"}
      //   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    	MOVQ	DI, 0(SP)
    	MOVQ	AX, 8(SP)
    	MOVQ	BX, 16(SP)
    	MOVQ	CX, 24(SP)
    	MOVQ	DX, 32(SP)
    	// DI already saved
    	MOVQ	SI, 40(SP)
    	MOVQ	BP, 48(SP)
    	MOVQ	R8, 56(SP)
    	MOVQ	R9, 64(SP)
    	MOVQ	R10, 72(SP)
    	MOVQ	R11, 80(SP)
    	// R12 already saved
    	// R13 already saved
    	// R14 is g
    	MOVQ	R15, 88(SP)
    
    	CALL	runtime·wbBufFlush(SB)
    
    	MOVQ	0(SP), DI
    	MOVQ	8(SP), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Now that these types implement link:{javadocPath}/org/gradle/api/Named.html[`Named`], these classes are no longer necessary and have been deprecated.
    They will be removed in Gradle 9.0.
    Use link:{javadocPath}/org/gradle/api/Named.Namer.html#INSTANCE[`Named.Namer.INSTANCE`] instead.
    
    The superinterface, link:{javadocPath}/org/gradle/api/Namer.html[`Namer`], is *not* being deprecated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    	// relevant nor actionable.
    	type modFlags int
    	const (
    		resolved modFlags = 1 << iota // version resolved by 'go get'
    		named                         // explicitly named on command line or provides a named package
    		hasPkg                        // needed to build named packages
    		direct                        // provides a direct dependency of the main module
    	)
    	relevantMods := make(map[module.Version]modFlags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

            attributes {
                attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
                attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.LIBRARY))
                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements, LibraryElements.JAR))
                attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling, Bundling.EXTERNAL))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// - both saved and new status have no Ready Condition set - we leave everything as it is,
    	// - saved status have no Ready Condition, but current one does - Controller was restarted with Node data already present in etcd,
    	// - saved status have some Ready Condition, but current one does not - it's an error, but we fill it up because that's probably a good thing to do,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      // CHECK-SAME: value = dense<true> : tensor<i1>
      %0 = "tf.VarIsInitializedOp"(%arg0) : (!tf_res) -> tensor<i1>
      // CHECK-NEXT: return [[TRUE]] :
      func.return %0 : tensor<i1>
    }
    
    // CHECK-LABEL: func @while_body
    // CHECK-SAME: ({{.+}}: tensor<i1>)
    func.func @while_body(%arg0: !tf_res, %arg1: tensor<i1>) -> (!tf_res, tensor<i1>) {
      // CHECK: [[TRUE:%.+]] = "tf.Const"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
Back to top