Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 365 for regular (0.37 sec)

  1. tests/integration/security/sds_ingress/ingress_test.go

    				expectedResponse         ingressutil.ExpectedResponse
    				callType                 ingressutil.CallType
    				tlsContext               ingressutil.TLSContext
    			}{
    				{
    					// TC1: regular communication without CRL from client A works
    					name:       "mtls ingress gateway without CRL-client A",
    					secretName: "testmtlsgateway-secret-without-crl-a",
    					ingressGatewayCredential: ingressutil.IngressCredential{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pkg/controller/replication/conversion.go

    			return
    		}
    		h.handler.OnDelete(cache.DeletedFinalStateUnknown{Key: tombstone.Key, Obj: rs})
    		return
    	}
    
    	// It's a regular RC object.
    	rs, err := convertRCtoRS(rc, nil)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("dropping RC OnDelete event: can't convert object %#v to RS: %v", obj, err))
    		return
    	}
    	h.handler.OnDelete(rs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_volumes.go

    				klog.InfoS("Cleaned up orphaned volume subpath from pod", "podUID", uid, "path", subpathVolumePath)
    			}
    		}
    	}
    
    	// Remove any remaining subdirectories along with the volumes directory itself.
    	// Fail if any regular files are encountered.
    	podVolDir := kl.getPodVolumesDir(uid)
    	if err := removeall.RemoveDirsOneFilesystem(kl.mounter, podVolDir); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      // Returns true if the death test passed; that is, the test process
      // exited during the test, its exit status matches a user-supplied
      // predicate, and its stderr output matches a user-supplied regular
      // expression.
      // The user-supplied predicate may be a macro expression rather
      // than a function pointer or functor, or else Wait and Passed could
      // be combined.
      virtual bool Passed(bool exit_status_ok) = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/fsys/fsys.go

    		// compiler?
    		if !strings.HasSuffix(fi.Name(), ".go") {
    			continue
    		}
    		if fi.Mode().IsRegular() {
    			return true, nil
    		}
    
    		// fi is the result of an Lstat, so it doesn't follow symlinks.
    		// But it's okay if the file is a symlink pointing to a regular
    		// file, so use os.Stat to follow symlinks and check that.
    		actualFilePath, _ := OverlayPath(filepath.Join(dir, fi.Name()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFileInputStream.java

                return (int) ( this.fp - start );
            }
        }
    
    
        /**
         * This stream class is unbuffered. Therefore this method will always
         * return 0 for streams connected to regular files. However, a
         * stream created from a Named Pipe this method will query the server using a
         * "peek named pipe" operation and return the number of available bytes
         * on the server.
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 08:55:14 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  7. src/runtime/stkframe.go

    	// inlining, this is the outermost function.
    	fn funcInfo
    
    	// pc is the program counter within fn.
    	//
    	// The meaning of this is subtle:
    	//
    	// - Typically, this frame performed a regular function call
    	//   and this is the return PC (just after the CALL
    	//   instruction). In this case, pc-1 reflects the CALL
    	//   instruction itself and is the correct source of symbolic
    	//   information.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					Format:    "byte",
    					MaxLength: maxPtr(20),
    				},
    			},
    			// note that unlike regular strings we don't have to take unicode into account,
    			// so we expect the max length to be exactly equal to the user-supplied one
    			ExpectedMaxElements: 20,
    		},
    	}
    	for _, testCase := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    			InputSchema: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type:      []string{"string"},
    					Format:    "byte",
    					MaxLength: maxPtr(20),
    				}},
    			// note that unlike regular strings we don't have to take unicode into account,
    			// so we expect the max length to be exactly equal to the user-supplied one
    			ExpectedMaxElements: 20,
    		},
    	}
    	for _, testCase := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Splitter.java

     * a <i>separator</i> sequence. This separator can be specified as a single {@linkplain #on(char)
     * character}, fixed {@linkplain #on(String) string}, {@linkplain #onPattern regular expression} or
     * {@link #on(CharMatcher) CharMatcher} instance. Or, instead of using a separator at all, a
     * splitter can extract adjacent substrings of a given {@linkplain #fixedLength fixed length}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top