Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,205 for okdown (0.11 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            0 * known._
            0 * configure._
            0 * finalized._
    
            when:
            container.realizeNow()
    
            then:
            1 * known.execute(binary1)
            1 * known.execute(binary2)
            0 * known._
            0 * configure._
            0 * finalized._
    
            then:
            1 * configure.execute(binary1)
            1 * configure.execute(binary2)
            0 * known._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. pkg/security/security.go

    	// If present, FileMountedCerts should be true.
    
    	// DefaultCertChainFilePath is the well-known path for an existing certificate chain file
    	DefaultCertChainFilePath = "./etc/certs/cert-chain.pem"
    
    	// DefaultKeyFilePath is the well-known path for an existing key file
    	DefaultKeyFilePath = "./etc/certs/key.pem"
    
    	// DefaultRootCertFilePath is the well-known path for an existing root certificate file
    	DefaultRootCertFilePath = "./etc/certs/root-cert.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/componentconfigs/configset.go

    	return h.fromCluster(h, clientset, clusterCfg)
    }
    
    // known holds the known component config handlers. Add new component configs here.
    var known = []*handler{
    	&kubeProxyHandler,
    	&kubeletHandler,
    }
    
    // configBase is the base type for all component config implementations
    type configBase struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v2beta1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/autoscaling/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in the requests and limits, describing a single container in
    // each of the pods of the current scale target(e.g. CPU or memory). The values will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v1";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in the requests and limits, describing a single container in
    // each of the pods of the current scale target(e.g. CPU or memory). The values will be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// will be averaged together before being compared to the target value.
    	PodsMetricSourceType MetricSourceType = "Pods"
    	// ResourceMetricSourceType is a resource metric known to Kubernetes, as
    	// specified in requests and limits, describing each pod in the current
    	// scale target (e.g. CPU or memory).  Such metrics are built in to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                }
            }
            """
    
            expect:
            fails "components"
            failure.assertHasCause("Cannot create an instance of type 'NonRegisteredComponent' as this type is not known. Known types: ${ComponentSpec.name}, SampleComponent.")
        }
    
        def "cannot add unregistered type to model map of extensible type"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. src/debug/dwarf/entry.go

    			vers := b.format.version()
    			if vers == 0 {
    				b.error("unknown version for DW_FORM_ref_addr")
    			} else if vers == 2 {
    				val = Offset(b.addr())
    			} else {
    				is64, known := b.format.dwarf64()
    				if !known {
    					b.error("unknown size for DW_FORM_ref_addr")
    				} else if is64 {
    					val = Offset(b.uint64())
    				} else {
    					val = Offset(b.uint32())
    				}
    			}
    		case formRef1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def rootDir = tmpDir.createDir("root")
            def knownDir = rootDir.file("known").createDir()
            def knownTextFile = rootDir.file("known/known.txt").createFile()
            def knownHtmlFile = rootDir.file("known/known.html").createFile()
            // root
            //   - known <-- knownDir
            //     - known.txt <-- knownTextFile
            //     - known.html <-- knownHtmlFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top