Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,434 for Defines (0.22 sec)

  1. pkg/config/analysis/msg/messages.gen.go

    	// VirtualServiceHostNotFoundInGateway defines a diag.MessageType for message "VirtualServiceHostNotFoundInGateway".
    	// Description: Host defined in VirtualService not found in Gateway.
    	VirtualServiceHostNotFoundInGateway = diag.NewMessageType(diag.Warning, "IST0132", "one or more host %v defined in VirtualService %s not found in Gateway %s.")
    
    	// SchemaWarning defines a diag.MessageType for message "SchemaWarning".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

            Map<String, String> defines = parseDefines(output, gccBinary);
            VersionNumber scrapedVersion = determineVersion(defines, gccBinary);
            ArchitectureInternal architecture = determineArchitecture(defines);
            String scrapedVendor = determineVendor(error, scrapedVersion, gccBinary);
            ImmutableList<File> systemIncludes = determineSystemIncludes(defines, path, error);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/constants/constants.go

    	CACertAndKeyBaseName = "ca"
    	// CACertName defines certificate name
    	CACertName = "ca.crt"
    	// CAKeyName defines certificate name
    	CAKeyName = "ca.key"
    
    	// APIServerCertAndKeyBaseName defines API's server certificate and key base name
    	APIServerCertAndKeyBaseName = "apiserver"
    	// APIServerCertName defines API's server certificate name
    	APIServerCertName = "apiserver.crt"
    	// APIServerKeyName defines API's server key name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    	// LocalFlags defines the list of flags that should be assigned to the cobra command generated
    	// for this phase.
    	// Nb. if two or phases have the same local flags, please consider using local flags in the parent command
    	// or additional flags defined in the phase runner.
    	LocalFlags *pflag.FlagSet
    
    	// ArgsValidator defines the positional arg function to be used for validating args for this phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/initializer/interfaces.go

    	"k8s.io/component-base/featuregate"
    )
    
    // WantsExternalKubeClientSet defines a function which sets external ClientSet for admission plugins that need it
    type WantsExternalKubeClientSet interface {
    	SetExternalKubeClientSet(kubernetes.Interface)
    	admission.InitializationValidator
    }
    
    // WantsExternalKubeInformerFactory defines a function which sets InformerFactory for admission plugins that need it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

            then:
            def local = scope.localClassLoader.loadClass(TestClass1.name)
            def exported = scope.exportClassLoader.loadClass(TestClass2.name)
            scope.defines(local)
            scope.defines(exported)
            !scope.defines(TestClass1)
            !scope.defines(TestClass2)
        }
    
        def "requesting loaders before locking creates pessimistic setup"() {
            given:
            scope.localClassLoader // trigger
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults.go

    )
    
    const (
    	// DefaultServiceDNSDomain defines default cluster-internal domain name for Services and Pods
    	DefaultServiceDNSDomain = "cluster.local"
    	// DefaultServicesSubnet defines default service subnet range
    	DefaultServicesSubnet = "10.96.0.0/12"
    	// DefaultClusterDNSIP defines default DNS IP
    	DefaultClusterDNSIP = "10.96.0.10"
    	// DefaultKubernetesVersion defines default kubernetes version
    	DefaultKubernetesVersion = "stable-1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

      }
    
      QuantizationComponent quantization_component = 1;
    
      // Defines the target bit of the data.
      BitWidth bit_width = 2;
    
      // Defines the type of data of the quantized component.
      BitType bit_type = 3;
    
      // Defines whether quantization is done in narrow range.
      bool enable_narrow_range = 4;
    
      // Defines whether quantiation is done per-channel.
      bool enable_per_channel_quantization = 5;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/html/template/examplefiles_test.go

    		// T0.tmpl is a plain template file that just invokes T1.
    		{"T0.tmpl", `T0 invokes T1: ({{template "T1"}})`},
    		// T1.tmpl defines a template, T1 that invokes T2.
    		{"T1.tmpl", `{{define "T1"}}T1 invokes T2: ({{template "T2"}}){{end}}`},
    		// T2.tmpl defines a template T2.
    		{"T2.tmpl", `{{define "T2"}}This is T2{{end}}`},
    	})
    	// Clean up after the test; another quirk of running as an example.
    	defer os.RemoveAll(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil.go

    type FileType string
    
    const (
    	// FileTypeBlockDev defines a constant for the block device FileType.
    	FileTypeBlockDev FileType = "BlockDevice"
    	// FileTypeCharDev defines a constant for the character device FileType.
    	FileTypeCharDev FileType = "CharDevice"
    	// FileTypeDirectory defines a constant for the directory FileType.
    	FileTypeDirectory FileType = "Directory"
    	// FileTypeFile defines a constant for the file FileType.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top