Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for ignoreMe (0.21 sec)

  1. src/cmd/dist/build.go

    	generated := []byte(generatedHeader)
    
    	// Remove generated source files.
    	filepath.WalkDir(pathf("%s/src", goroot), func(path string, d fs.DirEntry, err error) error {
    		switch {
    		case err != nil:
    			// ignore
    		case d.IsDir() && (d.Name() == "vendor" || d.Name() == "testdata"):
    			return filepath.SkipDir
    		case d.IsDir() && d.Name() != "dist":
    			// Remove generated binary named for directory, but not dist out from under us.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            registerServiceOn(modelRegistry, "serviceRegistry", SERVICE_REGISTRY_MODEL_TYPE, services, instanceDescriptorFor("serviceRegistry"));
            // TODO:LPTR This ignores changes to Project.layout.buildDirectory after model node has been created
            registerFactoryOn(modelRegistry, "buildDir", FILE_MODEL_TYPE, () -> getLayout().getBuildDirectory().getAsFile().get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			Event{Type: "proxy", ID: "3.3.3.3"},
    			Event{Type: "eds", ID: "selector.com", Namespace: selector.Namespace, EndpointCount: 4},
    		)
    	})
    
    	t.Run("ignore host workload", func(t *testing.T) {
    		// Add a WLE with host address. Should be ignored by static service entry.
    		createConfigs([]*config.Config{wle3}, store, t)
    		instances := []*model.ServiceInstance{
    			makeInstanceWithServiceAccount(selector, "2.2.2.2", 444,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    			// Each pod is capable of
    			// determining whether or not the entire Job is done.  Subsequent pods are
    			// not expected to fail, but if they do, the failure is ignored.  Once any
    			// pod succeeds, the controller waits for remaining pods to finish, and
    			// then the job is complete.
    			complete = jobCtx.succeeded > 0 && active == 0
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. configure.py

      """Convert a version number to a integer that can be used to compare.
    
      Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The
      'xxxxx' part, for instance 'homebrew' on OS/X, is ignored.
    
      Args:
        version: a version to be converted
    
      Returns:
        An integer if converted successfully, otherwise return None.
      """
      version = version.split('-')[0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  6. src/crypto/tls/handshake_client_test.go

    	// renegotiation attempt that is expected to fail.
    	renegotiationExpectedToFail int
    	// checkRenegotiationError, if not nil, is called with any error
    	// arising from renegotiation. It can map expected errors to nil to
    	// ignore them.
    	checkRenegotiationError func(renegotiationNum int, err error) error
    	// sendKeyUpdate will cause the server to send a KeyUpdate message.
    	sendKeyUpdate bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	}
    
    	// Ignore the failure if the tests are running in a QEMU-based emulator,
    	// QEMU is not perfect at emulating everything.
    	// IN_QEMU environmental variable is set by some of the Go builders.
    	// IN_QEMU=1 indicates that the tests are running in QEMU. See issue 9605.
    	if os.Getenv("IN_QEMU") == "1" {
    		t.Skip("ignore the failure in QEMU; see golang.org/issue/9605")
    	}
    	t.FailNow()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceregistry_test.go

    	expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", []string{"1.2.3.4:80"}, nil)
    
    	// create an FQDN endpoint that should be ignored
    	createEndpointSliceWithType(t, s.KubeClient().Kube(), "slice1", "service",
    		namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"foo.com"}, discovery.AddressTypeFQDN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

        # move the processes from the root group to the /init group,
        # otherwise writing subtree_control fails with EBUSY.
        # An error during moving non-existent process (i.e., "cat") is ignored.
        mkdir -p /sys/fs/cgroup/init
        xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || :
        # enable controllers
        sed -e 's/ / +/g' -e 's/^/+/' < /sys/fs/cgroup/cgroup.controllers \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    //
    // If typ.manual() == false, allocSpan allocates a heap span of class spanclass
    // and updates heap accounting. If manual == true, allocSpan allocates a
    // manually-managed span (spanclass is ignored), and the caller is
    // responsible for any accounting related to its use of the span. Either
    // way, allocSpan will atomically add the bytes in the newly allocated
    // span to *sysStat.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top