Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 216 for NEW (0.12 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                return new ActivationFrame(property, Optional.empty());
            }
    
            private <P> ActivationFrame nextFrame(String property, Function<P, InputLocationTracker> child) {
                @SuppressWarnings("unchecked")
                final Optional<P> parent = (Optional<P>) stk.peek().parent;
                return new ActivationFrame(property, parent.map(child));
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. pkg/kubelet/stats/cri_stats_provider_test.go

    	mockCtrl := gomock.NewController(t)
    	defer mockCtrl.Finish()
    
    	var (
    		mockCadvisor       = cadvisortest.NewMockInterface(mockCtrl)
    		mockRuntimeCache   = new(kubecontainertest.MockRuntimeCache)
    		mockPodManager     = new(kubepodtest.MockManager)
    		resourceAnalyzer   = new(fakeResourceAnalyzer)
    		fakeRuntimeService = critest.NewFakeRuntimeService()
    		fakeImageService   = critest.NewFakeImageService()
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    		path := req.Path
    		old := req.Version
    		new := r.buildListVersion[path]
    		if old != new {
    			changes[path] = change{path, old, new}
    		}
    	}
    	for _, req := range newReqs {
    		if gover.IsToolchain(req.Path) {
    			continue
    		}
    		path := req.Path
    		old := r.initialVersion[path]
    		new := req.Version
    		if old != new {
    			changes[path] = change{path, old, new}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. src/net/http/request.go

    // sending the request, and reading the response headers and body.
    //
    // To create a new request with a context, use [NewRequestWithContext].
    // To make a deep copy of a request with a new context, use [Request.Clone].
    func (r *Request) WithContext(ctx context.Context) *Request {
    	if ctx == nil {
    		panic("nil context")
    	}
    	r2 := new(Request)
    	*r2 = *r
    	r2.ctx = ctx
    	return r2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    var (
    	errKeepAlivesDisabled = errors.New("http: putIdleConn: keep alives disabled")
    	errConnBroken         = errors.New("http: putIdleConn: connection is in bad state")
    	errCloseIdle          = errors.New("http: putIdleConn: CloseIdleConnections was called")
    	errTooManyIdle        = errors.New("http: putIdleConn: too many idle connections")
    	errTooManyIdleHost    = errors.New("http: putIdleConn: too many idle connections for host")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. cluster/gce/windows/k8s-node-setup.psm1

      # results in "New-NetRoute : Element not found" errors). I don't know what's
      # up with that, but since it's hard to know what's the right thing to do here
      # we just try to add the route on all of the network adapters.
      Get-NetAdapter | ForEach-Object {
        $adapter_index = $_.InterfaceIndex
        New-NetRoute `
            -ErrorAction Ignore `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	const f = "append.txt"
    	s := writeFile(t, f, O_CREATE|O_TRUNC|O_RDWR, "new")
    	if s != "new" {
    		t.Fatalf("writeFile: have %q want %q", s, "new")
    	}
    	s = writeFile(t, f, O_APPEND|O_RDWR, "|append")
    	if s != "new|append" {
    		t.Fatalf("writeFile: have %q want %q", s, "new|append")
    	}
    	s = writeFile(t, f, O_CREATE|O_APPEND|O_RDWR, "|append")
    	if s != "new|append|append" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    }
    
    func newPreexistingExpressions() preexistingExpressions {
    	return preexistingExpressions{
    		matchConditionExpressions:        sets.New[string](),
    		validationExpressions:            sets.New[string](),
    		validationMessageExpressions:     sets.New[string](),
    		auditAnnotationValuesExpressions: sets.New[string](),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// At least one node was responding in previous pass or in the current pass. Semantics is as follows:
    	// - if the new state is "partialDisruption" we call a user defined function that returns a new limiter to use,
    	// - if the new state is "normal" we resume normal operation (go back to default limiter settings),
    	// - if new state is "fullDisruption" we restore normal eviction rate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    	// fields
    	_ = A{}.B
    	_ = new(A).B
    
    	_ = A{}.C
    	_ = new(A).C
    
    	_ = A{}.b
    	_ = new(A).b
    
    	_ = A{}.c
    	_ = new(A).c
    
    	_ = Inst.p
    	_ = G[string]{}.p
    
    	// methods
    	_ = A{}.f
    	_ = new(A).f
    	_ = A{}.g
    	_ = new(A).g
    	_ = new(A).h
    
    	_ = B{}.f
    	_ = new(B).f
    
    	_ = C{}.g
    	_ = new(C).g
    	_ = new(C).h
    	_ = Inst.m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top