Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 737 for pieces (0.12 sec)

  1. pkg/volume/secret/secret.go

    				Namespace: b.pod.Namespace,
    				Name:      b.source.SecretName,
    			},
    		}
    	}
    
    	totalBytes := totalSecretBytes(secret)
    	klog.V(3).Infof("Received secret %v/%v containing (%v) pieces of data, %v total bytes",
    		b.pod.Namespace,
    		b.source.SecretName,
    		len(secret.Data),
    		totalBytes)
    
    	payload, err := MakePayload(b.source.Items, secret, b.source.DefaultMode, optional)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    This sample shows how build logic can be organized into reusable pieces and published to a repository for reuse in other projects
    for multi-repo setups.
    
    NOTE: This sample shows how to adopt an link:sample_publishing_convention_plugins.html[existing sample] for use with Test Suites.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    This sample shows how build logic can be organized into reusable pieces and published to a repository for reuse in other projects
    for multi-repo setups.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	toRefs := func(strs []string) []metav1.OwnerReference {
    		refs := []metav1.OwnerReference{}
    		for _, s := range strs {
    			pieces := strings.Split(s, "/")
    			refs = append(refs, metav1.OwnerReference{
    				APIVersion: pieces[0],
    				Kind:       pieces[1],
    				Name:       pieces[2],
    			})
    		}
    		return refs
    	}
    	testCases := []struct {
    		orig, new []string
    		changed   bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

                }
    
                private FileCollection inferGroovyClasspath(VersionNumber groovyVersion) {
                    // We may already have the required pieces on classpath via localGroovy()
                    Set<String> groovyJarNames = groovyJarNamesFor(groovyVersion);
                    List<File> groovyClasspath = collectJarsFromClasspath(classpath, groovyJarNames);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. src/log/log_test.go

    )
    
    type tester struct {
    	flag    int
    	prefix  string
    	pattern string // regexp that log output must match; we add ^ and expected_text$ always
    }
    
    var tests = []tester{
    	// individual pieces:
    	{0, "", ""},
    	{0, "XXX", "XXX"},
    	{Ldate, "", Rdate + " "},
    	{Ltime, "", Rtime + " "},
    	{Ltime | Lmsgprefix, "XXX", Rtime + " XXX"},
    	{Ltime | Lmicroseconds, "", Rtime + Rmicroseconds + " "},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 20:04:37 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    	}
    
    	// Split on dot and check each piece conforms to rules.
    	allNumbers := true
    	pieces := strings.Split(bucket, dnsDelimiter)
    	for _, piece := range pieces {
    		if len(piece) == 0 || piece[0] == '-' ||
    			piece[len(piece)-1] == '-' {
    			// Current piece has 0-length or starts or
    			// ends with a hyphen.
    			return false
    		}
    		// Now only need to check if each piece is a valid
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc_64bit.go

    		print("runtime: base = ", hex(base), ", limit = ", hex(limit), "\n")
    		throw("sysGrow bounds not aligned to pallocChunkBytes")
    	}
    	scSize := unsafe.Sizeof(atomicScavChunkData{})
    	// Map and commit the pieces of chunks that we need.
    	//
    	// We always map the full range of the minimum heap address to the
    	// maximum heap address. We don't do this for the summary structure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. pkg/volume/configmap/configmap.go

    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: b.pod.Namespace,
    				Name:      b.source.Name,
    			},
    		}
    	}
    
    	totalBytes := totalBytes(configMap)
    	klog.V(3).Infof("Received configMap %v/%v containing (%v) pieces of data, %v total bytes",
    		b.pod.Namespace,
    		b.source.Name,
    		len(configMap.Data)+len(configMap.BinaryData),
    		totalBytes)
    
    	payload, err := MakePayload(b.source.Items, configMap, b.source.DefaultMode, optional)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    					validateDirectDialer,
    					nil,
    					nil,
    				},
    			},
    			expectedError: nil,
    		},
    	}
    
    	for _, tc := range testcases {
    		t.Run(tc.name, func(t *testing.T) {
    			// Setup the various pieces such as the fake dialer prior to initializing the egress selector.
    			// Go doesn't allow function pointer comparison, nor does its reflect package
    			// So overriding the default dialer to detect if it is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top