Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 122 for Street (0.16 sec)

  1. src/cmd/go/internal/help/helpdoc.go

    let package authors make sure the custom import path is used and not a
    direct path to the underlying code hosting site.
    
    Import path checking is disabled for code found within vendor trees.
    This makes it possible to copy code into alternate locations in vendor trees
    without needing to update import comments.
    
    Import path checking is also disabled when using modules.
    Import path comments are obsoleted by the go.mod file's module statement.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

    /**
     * Holds the resolution state for a local component. The state is calculated as required, and an instance can be used for multiple resolutions across a build tree.
     *
     * <p>The aim is to create only a single instance of this type per project and reuse that for all resolution that happens in a build tree. This isn't quite the case yet.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    			if err != nil {
    				t.Fatalf("couldn't create config: %v", err)
    			}
    
    			tree, err := certsphase.GetCertsWithoutEtcd().AsMap().CertTree()
    			if err != nil {
    				t.Fatalf("couldn't get cert tree: %v", err)
    			}
    
    			if err := tree.CreateTree(oldcfg); err != nil {
    				t.Fatalf("couldn't get create cert tree: %v", err)
    			}
    
    			for _, kubeConfig := range []string{
    				constants.AdminKubeConfigFileName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

            return BuildTreeModelControllerServices.Supplier { registration ->
                registration.add(BuildType::class.java, BuildType.TASKS)
                // Configuration cache is not supported for nested build trees
                val buildModelParameters =
                    BuildModelParameters(
                        startParameter.isParallelProjectExecutionEnabled,
                        startParameter.isConfigureOnDemand,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/helpers.go

    		if imageStatus.Uid != nil {
    			return &imageStatus.GetUid().Value, "", nil
    		}
    
    		if imageStatus.Username != "" {
    			return nil, imageStatus.Username, nil
    		}
    	}
    
    	// If non of them is set, treat it as root.
    	return new(int64), "", nil
    }
    
    // isInitContainerFailed returns true under the following conditions:
    // 1. container has exited and exitcode is not zero.
    // 2. container is in unknown state.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

            """
        }
    
        def "reports successful project configuration progress events"() {
            when:
            runBuild("tasks")
    
            then:
            events.operations.size() == 6
            events.trees == events.operations
            containsSuccessfulProjectConfigurationOperation(":buildSrc", file("buildSrc"), ":")
            containsSuccessfulProjectConfigurationOperation(":buildSrc:a", file("buildSrc"), ":a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          if (interface) interface.getEffects(effects);
          if (effects.empty()) {
            // The op is potentially side-effecting and doesn't have any effect
            // assigned, treat it as unknown side effect.
            SideEffects side_effects;
            side_effects.SetResourceId(kUnknownResourceId);
            side_effects.SetUnknownEffect();
            UpdateSideEffectsByResourceId(side_effects,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    Gradle provides the built-in `dependencies` task to render a dependency tree from the command line.
    By default, the dependency tree renders dependencies for all <<declaring_dependencies.adoc#sec:what-are-dependency-configurations,configurations>> within a <<command_line_interface#executing_tasks_in_multi_project_builds,single project>>.
    The dependency tree indicates the selected version of each dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. pilot/pkg/features/experimental.go

    			"that ENABLE_MCS_SERVICE_DISCOVERY also be enabled.").Get() &&
    		EnableMCSServiceDiscovery
    
    	EnableMCSClusterLocal = env.Register(
    		"ENABLE_MCS_CLUSTER_LOCAL",
    		false,
    		"If enabled, istiod will treat the host "+
    			"`<svc>.<namespace>.svc.cluster.local` as defined by the "+
    			"Kubernetes Multi-Cluster Services (MCS) spec. In this mode, "+
    			"requests to `cluster.local` will be routed to only those "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/controller/daemon/update.go

    		var candidatePodsToDelete []string
    		for nodeName, pods := range nodeToDaemonPods {
    			newPod, oldPod, ok := findUpdatedPodsOnNode(ds, pods, hash)
    			if !ok {
    				// let the manage loop clean up this node, and treat it as an unavailable node
    				logger.V(3).Info("DaemonSet has excess pods on node, skipping to allow the core loop to process", "daemonset", klog.KObj(ds), "node", klog.KRef("", nodeName))
    				numUnavailable++
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top