Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for fanout (0.14 sec)

  1. src/runtime/mgc.go

    	lockInit(&work.assistQueue.lock, lockRankAssistQueue)
    	lockInit(&work.wbufSpans.lock, lockRankWbufSpans)
    }
    
    // gcenable is called after the bulk of the runtime initialization,
    // just before we're about to start letting user code run.
    // It kicks off the background sweeper goroutine, the background
    // scavenger goroutine, and enables GC.
    func gcenable() {
    	// Kick off sweeping and scavenging.
    	c := make(chan int, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// The reason for the condition's last transition.
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    	// A human readable message indicating details about the transition.
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            void startType(Class<?> type) {
            }
    
            /**
             * Collect information about an instance method. This is called for all instance methods that are not property getter or setter methods.
             */
            void visitInstanceMethod(Method method) {
            }
    
            /**
             * Collect information about a property. This is called for all properties of a type.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            setupBuildWithSingleStep()
            buildFile("""
                project(":common") {
                    task secondProducer(type: FileProducer) {
                        output = layout.buildDirectory.file("common2.jar")
                        content = "common2"
                    }
                    artifacts {
                        implementation secondProducer.output
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	printLevel1 = 3
    	printLevel2 = 6
    )
    
    func printSpaces(numSpaces int) string {
    	return strings.Repeat(" ", numSpaces)
    }
    
    var (
    	// Ignore unmeshed pods.  This makes it easy to suppress warnings about kube-system etc
    	ignoreUnmeshed = false
    
    	describeNamespace string
    )
    
    func podDescribeCmd(ctx cli.Context) *cobra.Command {
    	var opts clioptions.ControlPlaneOptions
    	cmd := &cobra.Command{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    addViolation(
                            problems,
                            Severity.WARNING,
                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // The test measures how much concurrency each client got, on average, over
    // the initial evalDuration and tests to see whether they all got about the fair amount.
    // Each client needs to be demanding enough to use more than its fair share,
    // or overall care needs to be taken about timing so that scheduling details
    // do not cause any client to actually request a significantly smaller share
    // than it theoretically should.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    addViolation(
                            problems,
                            Severity.WARNING,
                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    		os.Setenv("GOROOT", testGOROOT)
    
    		// The whole GOROOT/pkg tree was installed using the GOHOSTOS/GOHOSTARCH
    		// toolchain (installed in GOROOT/pkg/tool/GOHOSTOS_GOHOSTARCH).
    		// The testgo.exe we are about to create will be built for GOOS/GOARCH,
    		// which means it will use the GOOS/GOARCH toolchain
    		// (installed in GOROOT/pkg/tool/GOOS_GOARCH).
    		// If these are not the same toolchain, then the entire standard library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. 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)
Back to top