Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for waiters (0.19 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			pl := &TaintToleration{}
    			got, err := pl.isSchedulableAfterNodeChange(logger, test.pod, test.oldObj, test.newObj)
    			if (err != nil) != test.wantErr {
    				t.Errorf("isSchedulableAfterNodeChange() error = %v, wantErr %v", err, test.wantErr)
    			}
    			if got != test.expectedHint {
    				t.Errorf("isSchedulableAfterNodeChange() = %v, want %v", got, test.expectedHint)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        auto attr =
            mlir::vhlo::RngAlgorithmV1Attr::get(builder.getContext(), algorithm);
        attributes.emplace_back(builder.getNamedAttr("rng_algorithm", attr));
        return;
      }
    }
    
    // Pull in FlatBuffer writers for TFLite generated using TableGen
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    	}
    
    	return caOpts, nil
    }
    
    // createIstioRA initializes the Istio RA signing functionality.
    // the caOptions defines the external provider
    // ca cert can come from three sources, order matters:
    // 1. Define ca cert via kubernetes secret and mount the secret through `external-ca-cert` volume
    // 2. Use kubernetes ca cert `/var/run/secrets/kubernetes.io/serviceaccount/ca.crt` if signer is
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. src/encoding/gob/type.go

    	wire    wireType
    }
    
    // typeInfoMap is an atomic pointer to map[reflect.Type]*typeInfo.
    // It's updated copy-on-write. Readers just do an atomic load
    // to get the current version of the map. Writers make a full copy of
    // the map and atomically update the pointer to point to the new map.
    // Under heavy read contention, this is significantly faster than a map
    // protected by a mutex.
    var typeInfoMap atomic.Value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        } catch (AssertionError expected) {
          return;
        }
        fail();
      }
    
      private static class BadEqualsFactory {
        /** oneConstantOnly matters now since it can be either null or the constant. */
        @SuppressWarnings("unused") // Called by reflection
        public static Object bad(String a, int b, @Nullable OneConstantEnum oneConstantOnly) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    		return sh.CopyFile(dst, src, perm, force)
    	}
    
    	// On Windows, always copy the file, so that we respect the NTFS
    	// permissions of the parent folder. https://golang.org/issue/22343.
    	// What matters here is not cfg.Goos (the system we are building
    	// for) but runtime.GOOS (the system we are building on).
    	if runtime.GOOS == "windows" {
    		return sh.CopyFile(dst, src, perm, force)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    			}
    			b[0] >>= excess
    		}
    
    		// FIPS 186-4 makes us check k <= N - 2 and then add one.
    		// Checking 0 < k <= N - 1 is strictly equivalent.
    		// None of this matters anyway because the chance of selecting
    		// zero is cryptographically negligible.
    		if _, err = k.SetBytes(b, c.N); err == nil && k.IsZero() == 0 {
    			break
    		}
    
    		if testingOnlyRejectionSamplingLooped != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. pom.xml

        <contributor>
          <name>Fabiano Cipriano de Oliveira (MNG-6261)</name>
        </contributor>
        <contributor>
          <name>Mike Mol (MNG-6665)</name>
        </contributor>
        <contributor>
          <name>Martin Kanters</name>
          <organization>JPoint</organization>
        </contributor>
        <contributor>
          <name>Maarten Mulders</name>
          <organization>Info Support</organization>
        </contributor>
        <contributor>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ExecutorService executor = newSingleThreadExecutor();
        Future<V> waiter =
            executor.submit(
                new Callable<V>() {
                  @Override
                  public V call() throws Exception {
                    return input.get();
                  }
                });
    
        try {
          return getUninterruptibly(waiter, timeout, unit);
        } catch (ExecutionException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        ExecutorService executor = newSingleThreadExecutor();
        Future<V> waiter =
            executor.submit(
                new Callable<V>() {
                  @Override
                  public V call() throws Exception {
                    return input.get();
                  }
                });
    
        try {
          return getUninterruptibly(waiter, timeout, unit);
        } catch (ExecutionException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top