Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 833 for Discover (0.27 sec)

  1. operator/pkg/tpath/tree.go

    // possible, returns original scalar value.
    func tryToUnmarshalStringToYAML(s any) (any, bool) {
    	// If value type is a string it could either be a literal string or a map type passed as a string. Try to unmarshal
    	// to discover it's the latter.
    	vv := s
    
    	if reflect.TypeOf(vv).Kind() == reflect.String {
    		sv := strings.Split(vv.(string), "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    	// points to what issued all service account tokens, it seems fitting for SAs to have this access.
    	// Defer to the cluster admin with regard to binding directly to all authenticated and/or
    	// unauthenticated users.
    	rolebindings = append(rolebindings,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. src/path/filepath/path_windows_test.go

    			t.Errorf("EvalSymlinks(%q) returns %q, but should return %q", test, p, cname)
    			continue
    		}
    	}
    }
    
    // checkVolume8dot3Setting runs "fsutil 8dot3name query c:" command
    // (where c: is vol parameter) to discover "8dot3 name creation state".
    // The state is combination of 2 flags. The global flag controls if it
    // is per volume or global setting:
    //
    //	0 - Enable 8dot3 name creation on all volumes on the system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    The former allows you to quickly see what classes of problems your build is facing.
    The latter allows you to quickly see which tasks are problematic.
    In both cases you can expand the tree in order to discover where the culprit is in the object graph.
    
    The report also includes a list of detected build configuration inputs, such as environment variables, system properties and value suppliers that were read at configuration phase:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	emptyCPUSet := cpuset.New()
    
    	if cpus == "" {
    		return emptyCPUSet, nil
    	}
    
    	topo, err := topology.Discover(machineInfo)
    	if err != nil {
    		return emptyCPUSet, fmt.Errorf("unable to discover CPU topology info: %s", err)
    	}
    	reservedCPUSet, err := cpuset.Parse(cpus)
    	if err != nil {
    		return emptyCPUSet, fmt.Errorf("unable to parse reserved-cpus list: %s", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    LoggerFactory.getLogger(mojoExecution.getMojoDescriptor().getFullGoalName()));
            try {
                Injector injector = Injector.create();
                injector.discover(pluginRealm);
                // Add known classes
                // TODO: get those from the existing plexus scopes ?
                injector.bindInstance(Session.class, sessionV4);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    			addressType:        gateway.HostnameAddressType,
    		},
    	}
    
    	if features.MultiNetworkGatewayAPI {
    		m[constants.UnmanagedGatewayController] = classInfo{
    			// This represents a gateway that our control plane cannot discover directly via the API server.
    			// We shouldn't generate Istio resources for it. We aren't programming this gateway.
    			controller:             constants.UnmanagedGatewayController,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    The declarative nature of the `plugins {}` block enables the Kotlin DSL to provide type-safe accessors to the extensions, configurations and other features contributed by the applied plugins, which makes it easy for IDEs to discover the details of the plugins' models and makes them easy to configure. +
    See the <<plugins.adoc#sec:plugins_block,`plugins {}` block documentation>> in the Gradle user manual for more information.
    ====
    
    [[configuring-plugins]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    func (APIGroup) SwaggerDoc() map[string]string {
    	return map_APIGroup
    }
    
    var map_APIGroupList = map[string]string{
    	"":       "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
    	"groups": "groups is a list of APIGroup.",
    }
    
    func (APIGroupList) SwaggerDoc() map[string]string {
    	return map_APIGroupList
    }
    
    var map_APIResource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    	}
    
    	// Readiness Handler.
    	s.httpMux.HandleFunc("/ready", s.istiodReadyHandler)
    
    	return nil
    }
    
    // initDiscoveryService initializes discovery server on plain text port.
    func (s *Server) initDiscoveryService() {
    	log.Infof("starting discovery service")
    	// Implement EnvoyXdsServer grace shutdown
    	s.addStartFunc("xds server", func(stop <-chan struct{}) error {
    		log.Infof("Starting ADS server")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top