Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 393 for Extract (0.12 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingwebhookconfiguration.go

    // validatingWebhookConfiguration must be a unmodified ValidatingWebhookConfiguration API object that was retrieved from the Kubernetes API.
    // ExtractValidatingWebhookConfiguration provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/core/v1/pod.go

    // the fieldManager never owned fields any fields.
    // pod must be a unmodified Pod API object that was retrieved from the Kubernetes API.
    // ExtractPod provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/resourcequota.go

    // the fieldManager never owned fields any fields.
    // resourceQuota must be a unmodified ResourceQuota API object that was retrieved from the Kubernetes API.
    // ExtractResourceQuota provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1beta1/certificatesigningrequest.go

    // certificateSigningRequest must be a unmodified CertificateSigningRequest API object that was retrieved from the Kubernetes API.
    // ExtractCertificateSigningRequest provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/coordination/v1/lease.go

    // the fieldManager never owned fields any fields.
    // lease must be a unmodified Lease API object that was retrieved from the Kubernetes API.
    // ExtractLease provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe.go

    		m, err := ParseIdentity(id)
    		if err != nil {
    			spiffeLog.Errorf("Failed to extract SPIFFE trust domain from %v: %v", id, err)
    			continue
    		}
    		for _, td := range trustDomainAliases {
    			m.TrustDomain = td
    			out.Insert(m.String())
    		}
    	}
    	return out
    }
    
    // GetTrustDomainFromURISAN extracts the trust domain part from the URI SAN in the X.509 certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

    import org.gradle.model.internal.fixture.ProjectRegistrySpec
    import org.gradle.model.internal.manage.binding.StructBindingsStore
    import org.gradle.model.internal.manage.schema.ModelSchemaStore
    import org.gradle.model.internal.manage.schema.extract.ScalarTypes
    import org.gradle.util.internal.TextUtil
    
    import java.util.concurrent.atomic.AtomicInteger
    
    import static org.gradle.model.ModelTypeTesting.fullyQualifiedNameOf
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. security/pkg/k8s/chiron/utils_test.go

    	if len(strs) < 2 {
    		return 0, fmt.Errorf("server.URL is invalid: %v", server.URL)
    	}
    	port, err := strconv.Atoi(strs[len(strs)-1])
    	if err != nil {
    		return 0, fmt.Errorf("error to extract port from URL: %v", server.URL)
    	}
    	return port, nil
    }
    
    func initFakeKubeClient(t test.Failer, certificate []byte) kube.CLIClient {
    	client := kube.NewFakeClient()
    	ctx := test.NewContext(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/dashboard_test.go

    						if !f {
    							t.Fatalf("Failed to find expected dashboard: %v", d.name)
    						}
    
    						queries, err := extractQueries(config)
    						if err != nil {
    							t.Fatalf("Failed to extract queries: %v", err)
    						}
    
    						for _, query := range queries {
    							retry.UntilSuccessOrFail(t, func() error {
    								return checkMetric(cl, p, query, d.excluded)
    							}, retry.Timeout(time.Minute))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/podcgroupns.go

    	/*
    		for each process, find its netns inode,
    		if we already seen the inode, skip it
    		if we haven't seen the inode, check the process cgroup and see if we
    		can extract a pod uid from it.
    		if we can, open the netns, and save a map of uid->netns-fd
    	*/
    
    	podUIDNetns := make(PodToNetns)
    	netnsObserved := sets.New[uint64]()
    
    	entries, err := fs.ReadDir(p.proc, ".")
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top