Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for scores (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.model.internal.core.DefaultNodeInitializerRegistry;
    import org.gradle.model.internal.core.Hidden;
    import org.gradle.model.internal.core.ModelReference;
    import org.gradle.model.internal.core.ModelRegistrations;
    import org.gradle.model.internal.core.NamedEntityInstantiator;
    import org.gradle.model.internal.core.NodeInitializerRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    // The heap consists of a set of arenas, which are 64MB on 64-bit and
    // 4MB on 32-bit (heapArenaBytes). Each arena's start address is also
    // aligned to the arena size.
    //
    // Each arena has an associated heapArena object that stores the
    // metadata for that arena: the heap bitmap for all words in the arena
    // and the span map for all pages in the arena. heapArena objects are
    // themselves allocated off-heap.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	return fmt.Sprintf("%v-%v", name, kgw.GatewayClassName)
    }
    
    func convertGateways(r configContext) ([]config.Config, map[parentKey][]*parentInfo, sets.String) {
    	// result stores our generated Istio Gateways
    	result := []config.Config{}
    	// gwMap stores an index to access parentInfo (which corresponds to a Kubernetes Gateway)
    	gwMap := map[parentKey][]*parentInfo{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // For more information on TIPC, see: http://tipc.sourceforge.net/.
    type SockaddrTIPC struct {
    	// Scope is the publication scopes when binding service/service range.
    	// Should be set to TIPC_CLUSTER_SCOPE or TIPC_NODE_SCOPE.
    	Scope int
    
    	// Addr is the type of address used to manipulate a socket. Addr must be
    	// one of:
    	//  - *TIPCSocketAddr: "id" variant in the C addr union
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import static org.gradle.integtests.fixtures.executer.AbstractGradleExecuter.CliDaemonArgument.NO_DAEMON;
    import static org.gradle.internal.service.scopes.DefaultGradleUserHomeScopeServiceRegistry.REUSE_USER_HOME_SERVICES;
    import static org.gradle.util.internal.CollectionUtils.collect;
    import static org.gradle.util.internal.CollectionUtils.join;
    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. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        /*
                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
                                prefix,
                                "scope",
                                problems,
    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. cmd/sts-handlers_test.go

    			fmt.Sprintf("config_url=%s/.well-known/openid-configuration", testApp.ProviderURL),
    			fmt.Sprintf("client_id=%s", testApp.ClientID),
    			fmt.Sprintf("client_secret=%s", testApp.ClientSecret),
    			"scopes=openid,groups",
    			fmt.Sprintf("redirect_uri=%s", testApp.RedirectURL),
    		}
    		if rolePolicies[i] != "" {
    			configCmds = append(configCmds, fmt.Sprintf("role_policy=%s", rolePolicies[i]))
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        .filter(Objects::nonNull)
                        .collect(Collectors.toSet())
                );
            }
            if (incomingEdges.size() == 1) {
                // At the same time if the current node _comes from_ a delegated variant (available-at)
                // then we need to take the exclusion filter from the origin node instead
                NodeState from = incomingEdges.get(0).getFrom();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    			m.Dirs = []string{}
    			scope := "main module or its selected dependencies"
    			if inWorkspaceMode() {
    				scope = "modules listed in go.work or their selected dependencies"
    			}
    			m.AddError(fmt.Errorf("directory prefix %s does not contain %s", base.ShortPath(absDir), scope))
    			return
    		}
    	}
    
    	m.MatchDirs(modRoots)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                         * TODO Extensions like Flex Mojos use custom scopes like "merged", "internal", "external", etc. In
                         * order to don't break backward-compat with those, only warn but don't error out.
                         */
                        validateEnum(
                                prefix,
                                "scope",
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top