Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 619 for reveal (0.28 sec)

  1. pkg/volume/util/nested_volumes.go

    				}
    				// since this mount point is nested, remember it so that we can check that following ones aren't nested beneath this one
    				prevNestedMPs = append(prevNestedMPs, mp+string(os.PathSeparator))
    				retval = append(retval, mp[len(myMPSlash):])
    			}
    		}
    		return nil
    	}
    
    	var retErr error
    	podutil.VisitContainers(&pod.Spec, podutil.AllFeatureEnabledContainers(), func(c *v1.Container, containerType podutil.ContainerType) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/compress/flate/dict_decoder_test.go

    	writeCopy(len(abc), 59*len(abc))
    	want.WriteString(strings.Repeat(abc, 60))
    
    	writeString(fox)
    	writeCopy(len(fox), 9*len(fox))
    	want.WriteString(strings.Repeat(fox, 10))
    
    	writeString(".")
    	writeCopy(1, 9)
    	want.WriteString(strings.Repeat(".", 10))
    
    	writeString(strings.ToUpper(poem))
    	writeCopy(len(poem), 7*len(poem))
    	want.WriteString(strings.Repeat(strings.ToUpper(poem), 8))
    
    	writeCopy(dd.histSize(), 10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 28 10:36:01 UTC 2016
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate_test.go

    			config: Config{
    				MaxEventSize: defaultConfig.MaxEventSize,
    				MaxBatchSize: 1,
    			},
    			events: []*auditinternal.Event{
    				{Annotations: map[string]string{"key": strings.Repeat("A", int(50))}},
    				{Annotations: map[string]string{"key": strings.Repeat("A", int(50))}},
    			},
    			wantBatchCount: 2,
    		},
    	}
    	for _, tc := range testCases {
    		tc := tc
    		t.Run(tc.desc, func(t *testing.T) {
    			t.Parallel()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/PipeTest.java

                MsrpcShareEnum rpc = new MsrpcShareEnum(handle.getServerWithDfs());
                handle.sendrecv(rpc);
                assertEquals(0, rpc.retval);
            }
        }
    
    
        @Test
        public void exclusiveConnection () throws IOException {
            try ( DcerpcHandle handle = DcerpcHandle
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  5. istioctl/pkg/multixds/gather.go

    	retval := discovery.DiscoveryResponse{}
    	if len(responses) == 0 {
    		return &retval, nil
    	}
    
    	for _, response := range responses {
    		// Combine all the shards as one, even if that means losing information about
    		// the control plane version from each shard.
    		retval.ControlPlane = response.ControlPlane
    		retval.Resources = append(retval.Resources, response.Resources...)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. pkg/util/tail/tail_test.go

    			expected:      "a",
    		},
    		{
    			name:          "the file length is longer than max and contains newlines",
    			max:           blockSize,
    			longerThanMax: true,
    			expected:      strings.Repeat("a", blockSize/2-1) + "\n" + strings.Repeat("a", blockSize/2),
    		},
    		{
    			name:          "the max is longer than file length ",
    			max:           4613,
    			longerThanMax: false,
    			expected:      string(testBytes),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    	}{
    		{
    			name:     "Certificate renewal for a PKI certificate",
    			certName: "apiserver",
    			createCertFunc: func() *x509.Certificate {
    				return writeTestCertificate(t, dir, "apiserver", testCACert, testCAKey, testCertOrganization, notBefore, notAfter)
    			},
    			expectedOrganization: testCertOrganization,
    		},
    		{
    			name:     "Certificate renewal for a certificate embedded in a kubeconfig file",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	// CAName defines the name for the CA on which this certificate depends
    	CAName string
    
    	// CABaseName defines the base name for the CA that should be used for certificate renewal
    	CABaseName string
    
    	// readwriter defines a CertificateReadWriter to be used for certificate renewal
    	readwriter certificateReadWriter
    
    	// certConfigMutators holds the mutator functions that can be applied to the input cert config object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. plugin/pkg/admission/security/podsecurity/admission.go

    		// start with a generic forbidden error
    		retval := admission.NewForbidden(a, errors.New("Not allowed by PodSecurity")).(*apierrors.StatusError)
    		// use message/reason/details/code from admission library if populated
    		if result.Result != nil {
    			if len(result.Result.Message) > 0 {
    				retval.ErrStatus.Message = result.Result.Message
    			}
    			if len(result.Result.Reason) > 0 {
    				retval.ErrStatus.Reason = result.Result.Reason
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 08:49:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/annotations/annotations.go

    		}
    	}
    
    	return nil
    }
    
    func resourceTypesAsStrings(resourceTypes []annotation.ResourceTypes) []string {
    	retval := []string{}
    	for _, resourceType := range resourceTypes {
    		if s := resourceType.String(); s != "Unknown" {
    			retval = append(retval, s)
    		}
    	}
    	return retval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 13:14:31 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top