Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 143 for halted (0.19 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * safe to do so. The exact circumstances under which a copy will or will not be performed are
       * undocumented and subject to change.
       *
       * <p>This method is not type-safe, as it may be called on a map with keys that are not mutually
       * comparable.
       *
       * @throws ClassCastException if the keys in {@code map} are not mutually comparable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    // Temp files created in default Tmp dir
    var globalTestTmpDir = os.TempDir()
    
    // reseed - returns a new seed every time the function is called.
    func reseed() uint32 {
    	return uint32(time.Now().UnixNano() + int64(os.Getpid()))
    }
    
    // nextSuffix - provides a new unique suffix every time the function is called.
    func nextSuffix() string {
    	randmu.Lock()
    	r := randN
    	// Initial seed required, generate one.
    	if r == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        /**
         * Returns the current value being referenced, or {@code null} if there is none (e.g. because
         * either it got collected, or {@link #clear} was called, or it wasn't set in the first place).
         */
        @CheckForNull
        V get();
    
        /** Returns the entry which contains this {@link WeakValueReference}. */
        E getEntry();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    	//     key:        claimKey
    	//     start time: user has NOT provide any volume ref in the claim AND
    	//                 there is no existing volume found for the claim,
    	//                 "provisionClaim" is called with a valid plugin/external provisioner
    	//                 to provision a volume
    	//     end time:   after a volume has been provisioned and bound to the claim successfully
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    		check.versionErrorf(lit, go1_13, "hexadecimal floating-point literal")
    	}
    }
    
    // exprInternal contains the core of type checking of expressions.
    // Must only be called by rawExpr.
    // (See rawExpr for an explanation of the parameters.)
    func (check *Checker) exprInternal(T *target, x *operand, e ast.Expr, hint Type) exprKind {
    	// make sure x has a valid state in case of bailout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	q.pathOnce(q.pattern, func() pathSet {
    		if search.IsMetaPackage(q.pattern) || q.isWildcard() {
    			panic(fmt.Sprintf("internal error: queryPath called with pattern %q", q.pattern))
    		}
    		if q.version == "none" {
    			panic(`internal error: queryPath called with version "none"`)
    		}
    
    		if search.IsStandardImportPath(q.pattern) {
    			stdOnly := module.Version{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    		}
    	}
    
    	return nonServiceRegistryHosts, matchingRegistryServices
    }
    
    // buildSidecarVirtualHostsForVirtualService creates virtual hosts corresponding to a virtual service.
    // Called for each port to determine the list of vhosts on the given port.
    // It may return an empty list if no VirtualService rule has a matching service.
    func buildSidecarVirtualHostsForVirtualService(
    	node *model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    					Type:      config.LeastAllocated,
    					Resources: defaultResources,
    				},
    			},
    			runPreScore: true,
    		},
    		{
    			name: "test case for ScoringStrategy RequestedToCapacityRatio case1 if PreScore is not called",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).
    				Obj(),
    			nodes: []*v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. pkg/volume/testing/testing.go

    // will return its output on the first command call, even if the command called is
    // different than the one scripted. This is mostly useful to make sure that the
    // right number of commands were called. If you want to check the exact commands
    // and arguments were called, set fe.ExectOrder to true.
    func ScriptCommands(fe *testingexec.FakeExec, scripts []CommandScript) {
    	fe.DisableScripts = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    		check.versionErrorf(lit, go1_13, "hexadecimal floating-point literal")
    	}
    }
    
    // exprInternal contains the core of type checking of expressions.
    // Must only be called by rawExpr.
    // (See rawExpr for an explanation of the parameters.)
    func (check *Checker) exprInternal(T *target, x *operand, e syntax.Expr, hint Type) exprKind {
    	// make sure x has a valid state in case of bailout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top