Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 634 for SELF (0.16 sec)

  1. hack/boilerplate/boilerplate_test.py

        """
    
        def test_boilerplate(self):
            os.chdir("test/")
    
            class Args:
                filenames = []
                rootdir = "."
                boilerplate_dir = "../"
                verbose = True
    
            # capture stdout
            old_stdout = sys.stdout
            sys.stdout = StringIO()
    
            boilerplate.args = Args
            ret = boilerplate.main()
            self.assertEqual(ret, 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 09:05:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	// are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
    	// are accessible via CEL macros and functions such as `self.all(...)`.
    	// If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and
    	// functions.
    	// If the Rule is scoped to a scalar, `self` is bound to the scalar value.
    	// Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. security/pkg/pki/ca/ca_test.go

    		rootCertFile, false, rsaKeySize)
    	if err != nil {
    		t.Fatalf("Failed to create a self-signed CA Options: %v", err)
    	}
    
    	ca, err := NewIstioCA(caopts)
    	if err != nil {
    		t.Errorf("Got error while creating self-signed CA: %v", err)
    	}
    	if ca == nil {
    		t.Fatalf("Failed to create a self-signed CA.")
    	}
    
    	signingCert, _, certChainBytes, rootCertBytes := ca.GetCAKeyCertBundle().GetAll()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// are accessible via `self[mapKey]`, map containment can be checked via `mapKey in self` and all entries of the map
    	// are accessible via CEL macros and functions such as `self.all(...)`.
    	// If the Rule is scoped to an array, the elements of the array are accessible via `self[i]` and also by macros and
    	// functions.
    	// If the Rule is scoped to a scalar, `self` is bound to the scalar value.
    	// Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      protected B usingGenerator(G subjectGenerator) {
        this.subjectGenerator = subjectGenerator;
        return self();
      }
    
      public G getSubjectGenerator() {
        return subjectGenerator;
      }
    
      @CanIgnoreReturnValue
      public B withSetUp(Runnable setUp) {
        this.setUp = setUp;
        return self();
      }
    
      public Runnable getSetUp() {
        return setUp;
      }
    
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/NioFileInterceptors.java

            @Receiver FileTypeDetector self,
            Path path,
            @CallerClassName String consumer
        ) throws IOException {
            tryReportFileOpened(path, consumer);
            return self.probeContentType(path);
        }
    
        @InterceptCalls
        @InstanceMethod
        public static SeekableByteChannel intercept_newByteChannel(
            @Receiver FileSystemProvider self,
            Path path,
            Set<?> options,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/CallInterceptionFilteringTestInstrumentationDeclaration.java

        @InterceptCalls
        @CallableKind.InstanceMethod
        @SuppressWarnings("NewMethodNamingConvention")
        public static void intercept_testInstrumentation(@ParameterKind.Receiver CallInterceptionFilteringTestReceiver self) {
            self.intercepted = "testInstrumentation()";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 17:53:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation_test.go

    												{
    													Rule: "self == 'singleton'",
    												},
    											},
    											Default: jsonPtr("singleton"),
    										},
    									},
    								},
    							},
    						},
    						"value": {
    							Type: "string",
    							XValidations: apiextensions.ValidationRules{
    								{
    									Rule: "self.startsWith('kube')",
    								},
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/runtime/pprof/proto_other.go

    //go:build !windows && !darwin
    
    package pprof
    
    import (
    	"errors"
    	"os"
    )
    
    // readMapping reads /proc/self/maps and writes mappings to b.pb.
    // It saves the address ranges of the mappings in b.mem for use
    // when emitting locations.
    func (b *profileBuilder) readMapping() {
    	data, _ := os.ReadFile("/proc/self/maps")
    	parseProcSelfMaps(data, b.addMapping)
    	if len(b.mem) == 0 { // pprof expects a map entry, so fake one.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 928 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/buildid_linux.go

    // one.
    
    import (
    	"bytes"
    	"debug/elf"
    	"os"
    	"testing"
    )
    
    func testBuildID(t *testing.T) {
    	f, err := elf.Open("/proc/self/exe")
    	if err != nil {
    		if os.IsNotExist(err) {
    			t.Skip("no /proc/self/exe")
    		}
    		t.Fatal("opening /proc/self/exe: ", err)
    	}
    	defer f.Close()
    
    	c := 0
    sections:
    	for i, s := range f.Sections {
    		if s.Type != elf.SHT_NOTE {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top