Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for indirectly (0.37 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            expect:
            succeeds 'broken'
        }
    
        @Issue("https://github.com/gradle/configuration-cache/issues/97")
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "does nag when service is used indirectly via another service even if task declares service reference and feature preview is enabled"() {
            given:
            serviceImplementation()
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    				retractions[i].message = err.Error()
    			}
    		})
    	}
    
    	// Load deprecations for modules mentioned on the command line. Only load
    	// deprecations for indirect dependencies if they're also direct dependencies
    	// of the main module. Deprecations of purely indirect dependencies are
    	// not actionable.
    	deprecations := make([]modMessage, 0, len(relevantMods))
    	for m, flags := range relevantMods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/init.go

    	direct["go"] = true // Every module directly uses the language and runtime.
    
    	if toolchain != "" {
    		roots = append(roots, module.Version{Path: "toolchain", Version: toolchain})
    		// Leave the toolchain as indirect: nothing in the user's module directly
    		// imports a package from the toolchain, and (like an indirect dependency in
    		// a module without graph pruning) we may remove the toolchain line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	}
    }
    
    // nftablesBaseChains lists our "base chains"; those that are directly connected to the
    // netfilter hooks (e.g., "postrouting", "input", etc.), as opposed to "regular" chains,
    // which are only run when a rule jumps to them. See
    // https://wiki.nftables.org/wiki-nftables/index.php/Configuring_chains.
    //
    // These are set up from setupNFTables() and then not directly referenced by
    // syncProxyRules().
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        @Override
        public void afterExecute(@DelegatesTo(GradleExecuter.class) Closure action) {
            afterExecute(new ClosureBackedAction<>(action));
        }
    
        @Override
        public GradleExecuter inDirectory(File directory) {
            workingDir = directory;
            return this;
        }
    
        public File getWorkingDir() {
            return workingDir == null ? getTestDirectoryProvider().getTestDirectory() : workingDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - link:{javadocPath}/org/gradle/api/file/FileCopyDetails.html#setMode-int-[FileCopyDetails.setMode]
    
    [[directory_build_cache_retention_deprecated]]
    ==== Deprecated setting retention period directly on local build cache ====
    
    In previous versions, cleanup of the local build cache entries ran every 24 hours, and this interval could not be configured.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.pb.go

    	// through the waypoint.
    	Waypoint *GatewayAddress `protobuf:"bytes,7,opt,name=waypoint,proto3" json:"waypoint,omitempty"`
    	// Load balancing policy for selecting endpoints.
    	// Note: this applies only to connecting directly to the workload; when waypoints are used, the waypoint's load_balancing
    	// configuration is used.
    	LoadBalancing *LoadBalancing `protobuf:"bytes,8,opt,name=load_balancing,json=loadBalancing,proto3" json:"load_balancing,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// To match the uncached watch implementation, once we have passed authn/authz/admission,
    		// and successfully parsed a resource version, other errors must fail with a watch event of type ERROR,
    		// rather than a directly returned error.
    		return newErrWatcher(err), nil
    	}
    
    	addedWatcher := false
    	func() {
    		c.Lock()
    		defer c.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    ### Container Images
    
    All container images are available as manifest lists and support the described
    architectures. It is also possible to pull a specific architecture directly by
    adding the "-$ARCH" suffix  to the container image name.
    
    name | architectures
    ---- | -------------
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        // There are 2 possibilities here:
                        // 1. the "platform" referenced is a real module, in which case we directly add it to the graph
                        // 2. the "platform" is a virtual, constructed thing, in which case we add virtual edges to the graph
                        addPlatformEdges(discoveredEdges, platformId, cs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top