Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,548 for _initialized (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/admission.go

    */
    
    package resourcequota
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apiserver/pkg/admission"
    	genericadmissioninitializer "k8s.io/apiserver/pkg/admission/initializer"
    	resourcequotaapi "k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota"
    	v1 "k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 23 10:34:50 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

            then:
            nativeDir.exists() == initialized
    
            where:
            // Works for all cases except -D$NATIVE_SERVICES_OPTION=false
            description       | systemProperties                    | initialized
            "initialized"     | ["-D$NATIVE_SERVICES_OPTION=true"]  | true
            "not initialized" | ["-D$NATIVE_SERVICES_OPTION=false"] | true // Should be false
            "initialized"     | ["-D$NATIVE_SERVICES_OPTION=''"]    | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_tpu_device.cc

      return absl::OkStatus();
    }
    
    // Check if TPU has been initialized. TPU initialization is not necessary
    // for 1x1.
    Status CheckIfTPUInitialized() {
      auto* tpu_platform = tpu::TpuPlatformInterface::GetRegisteredPlatform();
      if (!tpu_platform->Initialized()) {
        return errors::FailedPrecondition(
            "The TPU system has not been initialized.");
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilwait "k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/admission/initializer"
    	admissionmetrics "k8s.io/apiserver/pkg/admission/metrics"
    	"k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle"
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util_test.cc

      CreateContext();
    
      std::vector<XlaCompiler::Argument> args(2);
      args[0].kind = XlaCompiler::Argument::kParameter;
      args[0].initialized = true;
      args[0].type = DT_INT32;
      args[0].shape = TensorShape({1, 2});
      args[1].kind = XlaCompiler::Argument::kParameter;
      args[1].initialized = true;
      args[1].type = DT_INT32;
      args[1].shape = TensorShape({1, 2});
    
      const XlaCompiler::CompilationResult* result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    	err = informerFactory.Core().V1().Namespaces().Informer().GetStore().Update(namespace)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// if the update of initialized pod is not ignored, an error will be returned because the pod's Tolerations conflicts with namespace's Tolerations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

    public class SpnegoAuthenticator implements SsoAuthenticator {
    
        private static final Logger logger = LogManager.getLogger(SpnegoAuthenticator.class);
    
        protected static final String SPNEGO_INITIALIZED = "spnego.initialized";
        protected static final String SPNEGO_EXCLUDE_DIRS = "spnego.exclude.dirs";
        protected static final String SPNEGO_ALLOW_DELEGATION = "spnego.allow.delegation";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            cache.open()
    
            then:
            initialized
    
            cleanup:
            cache.close()
        }
    
        def "will rebuild cache if cache.properties is missing and properties are not empty"() {
            given:
            def dir = createCacheDir()
            def initialized = false
            def init = { initialized = true } as Consumer
            def properties = [foo: 'bar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/hwcap_linux.go

    	procAuxv = "/proc/self/auxv"
    
    	uintSize = int(32 << (^uint(0) >> 63))
    )
    
    // For those platforms don't have a 'cpuid' equivalent we use HWCAP/HWCAP2
    // These are initialized in cpu_$GOARCH.go
    // and should not be changed after they are initialized.
    var hwCap uint
    var hwCap2 uint
    
    func readHWCAP() error {
    	// For Go 1.21+, get auxv from the Go runtime.
    	if a := getAuxv(); len(a) > 0 {
    		for len(a) >= 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    	revision          string
    
    	// secretNamespace where we get cluster-access secrets
    	secretNamespace string
    	component       *multicluster.Component[*kubeController]
    }
    
    // NewMulticluster initializes data structure to store multicluster information
    func NewMulticluster(
    	serverID string,
    	kc kubernetes.Interface,
    	secretNamespace string,
    	opts Options,
    	serviceEntryController *serviceentry.Controller,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top