Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for Keys (0.05 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         */
        @Nonnull
        List<Path> getPaths();
    
        /**
         * Returns the file paths of all dependencies, dispatched according the tool options where to place them.
         * The {@link PathType} keys identify, for example, {@code --class-path} or {@code --module-path} options.
         * In the case of Java tools, the map may also contain {@code --patch-module} options, which are
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

      #   https://docs.microsoft.com/en-us/dotnet/api/system.io.fileattributes
    }
    
    # Creates the node PKI files in $env:PKI_DIR.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    # ${kube_env} keys that can be omitted for nodes that do not use an
    # authentication plugin:
    #   KUBELET_CERT
    #   KUBELET_KEY
    function Create-NodePki {
      Log-Output 'Creating node pki files'
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. pkg/security/security.go

    	// match the cluster name set in the MC setup.
    	ClusterID string
    
    	// The type of Elliptical Signature algorithm to use
    	// when generating private keys. Currently only ECDSA is supported.
    	ECCSigAlg string
    
    	// The type of curve to use when generating private keys with ECC. Currently only ECDSA is supported.
    	ECCCurve string
    
    	// FileMountedCerts indicates whether the proxy is using file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

        }
    
        def "disables configuration cache when --export-keys is used"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun("help")
    
            then:
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun("help", "--export-keys")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	KMSv2 featuregate.Feature = "KMSv2"
    
    	// owner: @enj
    	// kep: https://kep.k8s.io/3299
    	// beta: v1.28
    	// stable: v1.29
    	//
    	// Enables the use of derived encryption keys with KMS v2.
    	KMSv2KDF featuregate.Feature = "KMSv2KDF"
    
    	// owner: @alexzielenski, @cici37, @jiahuif
    	// kep: https://kep.k8s.io/3962
    	// alpha: v1.30
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

        Service service = 2;
      }
    }
    
    // Service represents a service - a group of workloads that can be accessed together.
    // The xds primary key is "namespace/hostname".
    // Secondary (alias) keys are the unique `network/IP` pairs that the service can be reached at.
    message Service {
      // Name represents the name for the service.
      // For Kubernetes, this is the Service name.
      string name = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. cmd/iam.go

    		return err
    	}
    
    	// We map keys that correspond to LDAP DNs and validate that they exist in
    	// the LDAP server.
    	var dnValidator func(*libldap.Conn, string) (*ldap.DNSearchResult, bool, error) = sys.LDAPConfig.GetValidatedUserDN
    	if isGroup {
    		dnValidator = sys.LDAPConfig.GetValidatedGroupDN
    	}
    
    	// map of normalized DN keys to original keys.
    	normalizedDNKeysMap := make(map[string][]string)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. internal/crypto/metadata.go

    	// MetaIV is the random initialization vector (IV) used for
    	// the MinIO-internal key derivation.
    	MetaIV = "X-Minio-Internal-Server-Side-Encryption-Iv"
    
    	// MetaAlgorithm is the algorithm used to derive internal keys
    	// and encrypt the objects.
    	MetaAlgorithm = "X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm"
    
    	// MetaSealedKeySSEC is the sealed object encryption key in case of SSE-C.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    func (s *http2sorter) Less(i, j int) bool { return s.v[i] < s.v[j] }
    
    // Keys returns the sorted keys of h.
    //
    // The returned slice is only valid until s used again or returned to
    // its pool.
    func (s *http2sorter) Keys(h Header) []string {
    	keys := s.v[:0]
    	for k := range h {
    		keys = append(keys, k)
    	}
    	s.v = keys
    	sort.Sort(s)
    	return keys
    }
    
    func (s *http2sorter) SortStrings(ss []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			node: nodeWithTaints("nodeA", []v1.Taint{
    				{Key: "dedicated", Value: "user2", Effect: "NoSchedule"},
    				{Key: "foo", Value: "bar", Effect: "NoSchedule"},
    			}),
    		},
    		{
    			name: "A pod has a toleration that keys and values match the taint on the node, but (non-empty) effect doesn't match, " +
    				"can't be scheduled onto the node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top