Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 653 for copied32 (0.33 sec)

  1. src/internal/gover/gover.go

    		return "", "", false
    	}
    	return x[:i], x[i:], true
    }
    
    // CmpInt returns cmp.Compare(x, y) interpreting x and y as decimal numbers.
    // (Copied from golang.org/x/mod/semver's compareInt.)
    func CmpInt(x, y string) int {
    	if x == y {
    		return 0
    	}
    	if len(x) < len(y) {
    		return -1
    	}
    	if len(x) > len(y) {
    		return +1
    	}
    	if x < y {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "Task uses the Configuration API")
        def "copied configuration has independent set of listeners"() {
            buildFile << """
    configurations {
      conf
    }
    
    def calls = []
    
    def conf = configurations.conf
    conf.incoming.beforeResolve { incoming ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/service_test.go

    func TestFuzzServiceDeepCopy(t *testing.T) {
    	fuzzer := fuzz.New()
    	originalSvc := &Service{}
    	fuzzer.Fuzz(originalSvc)
    	copied := originalSvc.DeepCopy()
    	opts := []cmp.Option{cmp.AllowUnexported(), cmpopts.IgnoreFields(AddressMap{}, "mutex")}
    	if !cmp.Equal(originalSvc, copied, opts...) {
    		diff := cmp.Diff(originalSvc, copied, opts...)
    		t.Errorf("unexpected diff %v", diff)
    	}
    }
    
    func TestParseSubsetKeyHostname(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. src/sync/atomic/value.go

    )
    
    // A Value provides an atomic load and store of a consistently typed value.
    // The zero value for a Value returns nil from [Value.Load].
    // Once [Value.Store] has been called, a Value must not be copied.
    //
    // A Value must not be copied after first use.
    type Value struct {
    	v any
    }
    
    // efaceWords is interface{} internal representation.
    type efaceWords struct {
    	typ  unsafe.Pointer
    	data unsafe.Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

            node.attr().count(kXlaAlreadyClusteredAttr)) {
          return errors::InvalidArgument(
              "Input files are already clustered, you probably copied in "
              "mark_for_compilation_<n>.pbtxt when you should have copied in "
              "before_mark_for_compilation_<n>.pbtxt");
        }
      }
    
      return absl::OkStatus();
    }
    
    Status ReadTextProtoFromString(Env* env, const string& data,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    func Unix(sec int64, nsec int64) Time {
    	return Time{time.Unix(sec, nsec)}
    }
    
    // Rfc3339Copy returns a copy of the Time at second-level precision.
    func (t Time) Rfc3339Copy() Time {
    	copied, _ := time.Parse(time.RFC3339, t.Format(time.RFC3339))
    	return Time{copied}
    }
    
    // UnmarshalJSON implements the json.Unmarshaller interface.
    func (t *Time) UnmarshalJSON(b []byte) error {
    	if len(b) == 4 && string(b) == "null" {
    		t.Time = time.Time{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm.go

    	return x == nil && s != nil && s.Generic.Nullable == false
    }
    
    // Default does defaulting of x depending on default values in s.
    // Default values from s are deep-copied.
    //
    // PruneNonNullableNullsWithoutDefaults has left the non-nullable nulls
    // that have a default here.
    func Default(x interface{}, s *structuralschema.Structural) {
    	if s == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 06 03:49:29 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device.h

    //
    // `device_name` must not name an existing physical or custom device (see
    // the documentation for TFE_RegisterCustomDevice for more information).
    //
    // Tensors may be copied on or off the device explicitly using
    // TPUReplicatedInput and TPUReplicatedOutput respectively. For example, with
    // two component devices, running `x = TPUReplicatedInput(inputs=[a, b])` on the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 04 21:49:16 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleContainer.groovy

    class GradleContainer extends GenericContainer<GradleContainer> {
        GradleContainer(String image) {
            super(image)
        }
    
        @Override
        void close() {
            stop()
        }
    
        // this code is mostly copied from ExecInContainerPattern in order to be able to
        // follow Gradle execution live
        GradleExecResult execute(String... command) {
            if (!isRunning(containerInfo)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    ----
    <1> The script for executing the application variant
    <2> The main executable binary (debug variant)
    <3> The test executable binary
    
    NOTE: When a build has dependencies, the dependent libraries are also copied into the installation folder.
    The shell scripts properly configure the library path so the package can be relocated.
    
    NOTE: Dependencies on other projects isn't covered in this guide.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top