Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for wbMove (0.11 sec)

  1. pkg/proxy/nftables/proxier.go

    // "5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80".
    func servicePortEndpointChainNameBase(servicePortName *proxy.ServicePortName, protocol, endpoint string) string {
    	// As above in servicePortChainNameBase: Namespace, Service, Port, Protocol, and
    	// EndpointPort are all safe to copy into the chain name directly. But if
    	// EndpointIP is IPv6 then it will contain colons, which aren't allowed in a chain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    + " java.lang.NullPointerException]]");
      }
    
      public void testSetIndirectSelf_toString() {
        final SettableFuture<Object> orig = SettableFuture.create();
        // unlike the above this indirection defeats the trivial cycle detection and causes a SOE
        orig.setFuture(
            new ForwardingListenableFuture<Object>() {
              @Override
              protected ListenableFuture<Object> delegate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    + " java.lang.NullPointerException]]");
      }
    
      public void testSetIndirectSelf_toString() {
        final SettableFuture<Object> orig = SettableFuture.create();
        // unlike the above this indirection defeats the trivial cycle detection and causes a SOE
        orig.setFuture(
            new ForwardingListenableFuture<Object>() {
              @Override
              protected ListenableFuture<Object> delegate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    	createdByStack []byte
    
    	// For a security release long ago, we created x/sys/execabs,
    	// which manipulated the unexported lookPathErr error field
    	// in this struct. For Go 1.19 we exported the field as Err error,
    	// above, but we have to keep lookPathErr around for use by
    	// old programs building against new toolchains.
    	// The String and Start methods look for an error in lookPathErr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. pkg/kube/kclient/client_test.go

    			slices.Equal(tracker.Events(), []string{"add/selected", "add/selected"})
    	})
    	testns.Delete("selected", "")
    	// We may or may not get the deletion event, currently.
    	// Like above for adds, we cannot guarantee exactly once delivery. For adds we chose to give 1 or 2 events.
    	// For delete, it is usually not important to handle, so we choose to get 0 or 1 events here.
    	retry.UntilOrFail(t, func() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        override fun fileCollectionObserved(fileCollection: FileCollectionInternal) {
            if (isInputTrackingDisabled() || isExecutingWork()) {
                // See #fileOpened() above
                return
            }
            captureWorkInputs(host.location(null).toString()) { it(fileCollection) }
        }
    
        override fun systemPropertiesPrefixedBy(prefix: String, snapshot: Map<String, String?>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. cmd/encryption-v1.go

    			partStart = i
    			break
    		}
    		cumulativeSum += size
    		encPartSize, _ := sio.EncryptedSize(uint64(size))
    		encCumulativeSum += int64(encPartSize)
    	}
    	// partStart is always found in the loop above,
    	// because off is validated.
    
    	sseDAREEncPackageBlockSize := int64(SSEDAREPackageBlockSize + SSEDAREPackageMetaSize)
    	startPkgNum := (off - cumulativeSum) / SSEDAREPackageBlockSize
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. configure.py

        error_msg: (String) String with one and only one '%s'. Formatted with each
          invalid response upon check_success(input) failure.
        suppress_default_error: (Bool) Suppress the above error message in favor of
          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. cmd/iam-object-store.go

    			return fmt.Errorf("unable to load user during STS purge: %w (%s)", err, item)
    		}
    
    	}
    	// Loading the STS policy mappings from disk ensures that stale entries
    	// (removed during loadUser() in the loop above) are removed from memory.
    	for _, item := range listedConfigItems[policyDBSTSUsersListKey] {
    		stsName := strings.TrimSuffix(item, ".json")
    		err := iamOS.loadMappedPolicy(ctx, stsName, stsUser, false, stsAccPoliciesFromStore)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    // OpArg{Int,Float}Reg values, inserting additional values in
    // cases where they are missing. Example:
    //
    //	func foo(s string, used int, notused int) int {
    //	  return len(s) + used
    //	}
    //
    // In the function above, the incoming parameter "used" is fully live,
    // "notused" is not live, and "s" is partially live (only the length
    // field of the string is used). At the point where debug value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top