Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for expiring (0.47 sec)

  1. pkg/scheduler/internal/cache/cache_test.go

    				t.Error(err)
    			}
    		})
    	}
    }
    
    // TestAddPodWillConfirm tests that a pod being Add()ed will be confirmed if assumed.
    // The pod info should still exist after manually expiring unconfirmed pods.
    func TestAddPodWillConfirm(t *testing.T) {
    	nodeName := "node"
    	now := time.Now()
    	ttl := 10 * time.Second
    
    	testPods := []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    			}
    			// All rate limiters are updated, so we can return early here.
    			return
    		}
    		// We're exiting full disruption mode
    		if allWasFullyDisrupted {
    			logger.Info("Controller detected that some Nodes are Ready. Exiting master disruption mode")
    			// When exiting disruption mode update probe timestamps on all Nodes.
    			now := nc.now()
    			for i := range nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    		// Note that we also don't advance here if we have a P and we're in a syscall.
    		return curCtx, false, nil
    	}
    	// We can advance this P. Check some invariants.
    	//
    	// We might have a goroutine if a goroutine is exiting a syscall.
    	reqs := event.SchedReqs{Thread: event.MustHave, Proc: event.MustNotHave, Goroutine: event.MayHave}
    	if err := validateCtx(curCtx, reqs); err != nil {
    		return curCtx, false, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

            else
                echo "ERROR starting API SERVER, exiting. Some process on ${API_HOST} is serving already on ${API_PORT}"
                exit 1
            fi
        fi
    
        if ! curl --silent -k -g "${API_HOST}:${API_SECURE_PORT}" ; then
            echo "API SERVER secure port is free, proceeding..."
        else
            echo "ERROR starting API SERVER, exiting. Some process on ${API_HOST} is serving already on ${API_SECURE_PORT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    	// renegotiation extension. (This is meaningless as a server because
    	// renegotiation is not supported in that case.)
    	secureRenegotiation bool
    	// ekm is a closure for exporting keying material.
    	ekm func(label string, context []byte, length int) ([]byte, error)
    	// resumptionSecret is the resumption_master_secret for handling
    	// or sending NewSessionTicket messages.
    	resumptionSecret []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	-coverprofile cover.out
    	    Write a coverage profile to the file after all tests have passed.
    	    Sets -cover.
    
    	-cpuprofile cpu.out
    	    Write a CPU profile to the specified file before exiting.
    	    Writes test binary as -c would.
    
    	-memprofile mem.out
    	    Write an allocation profile to the file after all tests have passed.
    	    Writes test binary as -c would.
    
    	-memprofilerate n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. .bazelrc

    # errors.
    # There is ongoing work on Bazel team's side to provide support for transitive
    # shared libraries. As part of migrating to transitive shared libraries, we
    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
            assertConfigCacheDiscarded()
            where:
            terse << [true, false]
        }
    
        def "doesn't report failures when exporting keys"() {
            createMetadataFile {
                noMetadataVerification()
                keyServer(keyServerFixture.uri)
                verifySignatures()
                addTrustedKey("org:foo:1.0", validPublicKeyHexString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		// we set exitAfter to five minutes because we use this client configuration to request new certs - if we are unable
    		// to request new certs, we will be unable to continue normal operation. Exiting the process allows a wrapper
    		// or the bootstrapping credentials to potentially lay down new initial config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. src/go/types/expr.go

    						check.error(e, MixedStructLit, "mixture of field:value and value elements in struct literal")
    						continue
    					}
    					key, _ := kv.Key.(*ast.Ident)
    					// do all possible checks early (before exiting due to errors)
    					// so we don't drop information on the floor
    					check.expr(nil, x, kv.Value)
    					if key == nil {
    						check.errorf(kv, InvalidLitField, "invalid field name %s in struct literal", kv.Key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
Back to top