Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 161 for replaced (0.14 sec)

  1. pilot/pkg/model/envoyfilter.go

    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    			if prefix, f := wellKnownVersions[cp.Match.Proxy.ProxyVersion]; f {
    				cpw.ProxyPrefixMatch = prefix
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/LittleEndianByteArray.java

           * as a compromise, we enable the optimization only on platforms that we specifically know to
           * work.
           *
           * In the future, the use of Unsafe.getLong() should be replaced by ByteBuffer.getLong(),
           * which will have an efficient native implementation in JDK 9.
           *
           */
          String arch = System.getProperty("os.arch");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

           * as a compromise, we enable the optimization only on platforms that we specifically know to
           * work.
           *
           * In the future, the use of Unsafe.getLong() should be replaced by ByteBuffer.getLong(),
           * which will have an efficient native implementation in JDK 9.
           *
           */
          String arch = System.getProperty("os.arch");
          if ("amd64".equals(arch)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[project_builddir]]
    ==== Deprecated `Project.buildDir` is to be replaced by `Project.layout.buildDirectory`
    
    The `Project.buildDir` property is deprecated.
    It uses eager APIs and has ordering issues if the value is read in build logic and then later modified.
    It could result in outputs ending up in different locations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

        // In the future StartParameter should be replaced with a `record` so this doesn't need to be checked
        void "all state is represented in toString"() {
            given:
            def parameter = new StartParameter()
            def fieldNames = StartParameter.class.getDeclaredFields()
                .findAll { !it.synthetic }
                .collect { it.name }
                .toSet()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                        FileUpToDateStatus.Removed -> "file '${displayNameOf(file)}' has been removed"
                        FileUpToDateStatus.TypeChanged -> "file '${displayNameOf(file)}' has been replaced by a directory"
                        FileUpToDateStatus.Unchanged -> null
                    }
                }
                is ConfigurationCacheFingerprint.DirectoryChildren -> input.run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```
    
        wll be replaced by `_replication_info="cluster"` and  `_xla_compile_device_type="TPU"`.
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				if gover.ModCompare(m.Path, m.Version, old.Version) < 0 {
    					verb = "downgraded"
    				}
    				replaced := ""
    				if mActual != m {
    					replaced = fmt.Sprintf(" (replaced by %s)", mActual)
    				}
    				err = fmt.Errorf("%s %s %s => %s%s: error finding sum for %s: %v", verb, m.Path, old.Version, m.Version, replaced, mActual, err)
    				sumErrs[i] = err
    			}
    		})
    	}
    
    	<-r.work.Idle()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	w.removedEventSinceRelist = false
    
    	if err := w.store.Replace(toReplace, resourceVersion); err != nil {
    		return err
    	}
    	w.listResourceVersion = version
    	w.resourceVersion = version
    	if w.onReplace != nil {
    		w.onReplace()
    	}
    	w.cond.Broadcast()
    
    	metrics.RecordResourceVersion(w.groupResource.String(), version)
    	klog.V(3).Infof("Replaced watchCache (rev: %v) ", resourceVersion)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. cmd/erasure-healing_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Write xl.meta with different modtime to simulate the case where a disk had
    	// gone down when an object was replaced by a new object.
    	fileInfoOutDated := fileInfoPreHeal
    	fileInfoOutDated.ModTime = time.Now()
    	err = disk.WriteMetadata(context.Background(), "", bucket, object, fileInfoOutDated)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top