Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 300 for sameId (0.32 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    <1> Gets a reference of type `Task` to the existing task named `check`
    <2> Registers a new untyped task named `myTask1`
    <3> Gets a reference to the existing task named `compileJava` of type `JavaCompile`
    <4> Registers a new task named `myCopy1` of type `Copy`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    link:{javadocPath}/org/gradle/nativeplatform/NativeBinarySpec.html[NativeBinarySpec], Gradle will create a task named `assembleDependents__${component.name}${binary.variant}__` that _assembles_ (compile and link) the binary and all of its dependent binaries.
    
    For each link:{javadocPath}/org/gradle/nativeplatform/NativeComponentSpec.html[NativeComponentSpec], Gradle will create a task named `assembleDependents__${component.name}__` that _assembles_ all the binaries of the component and all of their...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            z = nn_ops.conv2d(x, w, padding='SAME')
            return z, w
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      shape=input_shape, dtype=dtypes.float32, name='input_tensor'
                  )
              ]
          )
          def main(self, x):
            x1 = nn_ops.conv2d(x, self.w, padding='SAME')
            x2, _ = while_loop_ops.while_loop(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    		ev.args[1] = uint64(NoTask)
    	}
    
    	// Validate the name and record it. We'll need to pass it through to
    	// EvUserTaskEnd.
    	nameID := stringID(ev.args[2])
    	name, ok := evt.strings.get(nameID)
    	if !ok {
    		return curCtx, false, fmt.Errorf("invalid string ID %v for %v event", nameID, ev.typ)
    	}
    	o.activeTasks[id] = taskState{name: name, parentID: parentID}
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    				if volume, err = ctrl.updateVolumePhase(ctx, volume, v1.VolumeReleased, ""); err != nil {
    					// Nothing was saved; we will fall back into the same condition
    					// in the next call to this method
    					return err
    				}
    			}
    			if err = ctrl.reclaimVolume(ctx, volume); err != nil {
    				// Release failed, we will fall back into the same condition
    				// in the next call to this method
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/SetsTest.java

                      protected Set<String> create(String[] elements) {
                        return Sets.newConcurrentHashSet(Arrays.asList(elements));
                      }
                    })
                .named("Sets.newConcurrentHashSet")
                .withFeatures(CollectionSize.ANY, SetFeature.GENERAL_PURPOSE)
                .createTestSuite());
    
        suite.addTest(
            SetTestSuiteBuilder.using(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            0 * resolver._
            config.state == RESOLVED
    
            // We get back the same resolution results
            previousResolutionResult == nextResolutionResult
    
            // We get back the same resolved configuration
            previousResolvedConfiguration == nextResolvedConfiguration
    
            // And the same files
            previousFiles == nextFiles
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	//	  "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 Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    maxParallelUsages = 1
                }
    
                task named(type: Consumer) {
                    // override service with an explicit assignment
                    counter.set(counterProvider2)
                    usesService(counterProvider2)
                }
            """
            enableStableConfigurationCache()
    
            when:
            succeeds 'named'
    
            then:
            outputDoesNotContain "'Task#usesService'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top