Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 184 for preset (0.1 sec)

  1. src/cmd/go/internal/modload/init.go

    func WorkFilePath() string {
    	return workFilePath
    }
    
    // Reset clears all the initialized, cached state about the use of modules,
    // so that we can start over.
    func Reset() {
    	initialized = false
    	ForceUseModules = false
    	RootMode = 0
    	modRoots = nil
    	cfg.ModulesEnabled = false
    	MainModules = nil
    	requirements = nil
    	workFilePath = ""
    	modfetch.Reset()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    			// The assumptions around the controller have likely broken down.
    			// Set a flag and reset. That's the safest thing to do.
    			c.reset()
    			c.errOverflow = true
    			return c.min, false
    		}
    	}
    	return output, true
    }
    
    // reset resets the controller state, except for controller error flags.
    func (c *piController) reset() {
    	c.errIntegral = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            given:
            _ * provider1.type >> type
            _ * provider1.calculateValue(_) >> ValueSupplier.Value.of(a)
            _ * provider1.present >> true
            _ * provider2.type >> type
            _ * provider2.calculateValue(_) >> ValueSupplier.Value.of(b)
            _ * provider2.present >> true
            _ * provider3.type >> otherType
            container.addLater(provider1)
            container.addLater(provider2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    	// Prefer traffic in the same region.
    	LoadBalancing_REGION LoadBalancing_Scope = 1
    	// Prefer traffic in the same zone.
    	LoadBalancing_ZONE LoadBalancing_Scope = 2
    	// Prefer traffic in the same subzone.
    	LoadBalancing_SUBZONE LoadBalancing_Scope = 3
    	// Prefer traffic on the same node.
    	LoadBalancing_NODE LoadBalancing_Scope = 4
    	// Prefer traffic in the same cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            given:
            property.set(valueProvider)
            property.add(addProvider)
            property.addAll(addAllProvider)
    
            when:
            property.present
    
            then:
            1 * valueProvider.calculatePresence(_) >> true
            1 * addProvider.calculatePresence(_) >> true
            1 * addAllProvider.calculatePresence(_) >> true
            0 * _
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	var present bool
    	err = getSecurityDescriptorDacl(sd, &present, &dacl, &defaulted)
    	if !present {
    		err = ERROR_OBJECT_NOT_FOUND
    	}
    	return
    }
    
    // SetDACL sets the absolute security descriptor DACL.
    func (absoluteSD *SECURITY_DESCRIPTOR) SetDACL(dacl *ACL, present, defaulted bool) error {
    	return setSecurityDescriptorDacl(absoluteSD, present, dacl, defaulted)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    	globalIAMSys = nil
    }
    
    // Resets all the globals used modified in tests.
    // Resetting ensures that the changes made to globals by one test doesn't affect others.
    func resetTestGlobals() {
    	// set globalObjectAPI to `nil`.
    	resetGlobalObjectAPI()
    	// Reset config path set.
    	resetGlobalConfigPath()
    	// Reset Global server config.
    	resetGlobalConfig()
    	// Reset global endpoints.
    	resetGlobalEndpoints()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. cmd/iam.go

    					return false
    				}
    			}
    			iamLogIf(GlobalContext, fmt.Errorf("all policies were unexpectedly present!"))
    			return false
    		}
    
    	}
    
    	// 3. If an inline session-policy is present, evaluate it.
    
    	// Now check if we have a sessionPolicy.
    	hasSessionPolicy, isAllowedSP := isAllowedBySessionPolicy(args)
    	if hasSessionPolicy {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) activate(logger klog.Logger, pod *v1.Pod) bool {
    	// Verify if the pod is present in activeQ.
    	if _, exists, _ := p.activeQ.Get(newQueuedPodInfoForLookup(pod)); exists {
    		// No need to activate if it's already present in activeQ.
    		return false
    	}
    	var pInfo *framework.QueuedPodInfo
    	// Verify if the pod is present in unschedulablePods or backoffQ.
    	if pInfo = p.unschedulablePods.get(pod); pInfo == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
Back to top