Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for applicationId (0.24 sec)

  1. cmd/kube-apiserver/app/options/options_test.go

    					LeaseManagerConfig: etcd3.LeaseManagerConfig{
    						ReuseDurationSeconds: 100,
    						MaxObjectCount:       1000,
    					},
    				},
    				DefaultStorageMediaType: "application/vnd.kubernetes.protobuf",
    				DeleteCollectionWorkers: 1,
    				EnableGarbageCollection: true,
    				EnableWatchCache:        true,
    				DefaultWatchCacheSize:   100,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. cni/pkg/cmd/root.go

    				err = fmt.Errorf("%s: %w", cleanErr.Error(), err)
    			} else {
    				err = cleanErr
    			}
    		}
    
    		return
    	},
    }
    
    // GetCommand returns the main cobra.Command object for this application
    func GetCommand() *cobra.Command {
    	return rootCmd
    }
    
    func init() {
    	viper.AutomaticEnv()
    	viper.AllowEmptyEnv(true)
    	viper.SetEnvKeyReplacer(strings.NewReplacer("-", "_"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. settings.gradle.kts

        subproject("toolchains-jvm-shared")
        subproject("java-compiler-plugin")
        subproject("java-platform")
        subproject("normalization-java")
        subproject("platform-jvm")
        subproject("plugins-application")
        subproject("plugins-groovy")
        subproject("plugins-java")
        subproject("plugins-java-base")
        subproject("plugins-java-library")
        subproject("plugins-jvm-test-fixtures")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

    import java.net.URL;
    import java.net.URLClassLoader;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Function;
    
    /**
     * Constructs the application and implementation classpaths for a test process,
     * while also optionally loading test framework implementation dependencies from
     * the distribution.
     *
     * @see ForkedTestClasspath
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/config.go

    	// cannot default to it in generic apiserver and need to explicitly
    	// set it in kube-apiserver.
    	genericConfig.LoopbackClientConfig.ContentConfig.ContentType = "application/vnd.kubernetes.protobuf"
    	// Disable compression for self-communication, since we are going to be
    	// on a fast local network
    	genericConfig.LoopbackClientConfig.DisableCompression = true
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. src/sync/atomic/doc.go

    // Package atomic provides low-level atomic memory primitives
    // useful for implementing synchronization algorithms.
    //
    // These functions require great care to be used correctly.
    // Except for special, low-level applications, synchronization is better
    // done with channels or the facilities of the [sync] package.
    // Share memory by communicating;
    // don't communicate by sharing memory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    	HTTP10 = env.Register(
    		"PILOT_HTTP10",
    		false,
    		"Enables the use of HTTP 1.0 in the outbound HTTP listeners, to support legacy applications.",
    	).Get()
    
    	ScopeGatewayToNamespace = env.Register(
    		"PILOT_SCOPE_GATEWAY_TO_NAMESPACE",
    		false,
    		"If enabled, a gateway workload can only select gateway resources in the same namespace. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. cmd/sts-handlers.go

    	// Assume roles with no JWT, handles AssumeRole.
    	stsRouter.Methods(http.MethodPost).MatcherFunc(func(r *http.Request, rm *mux.RouteMatch) bool {
    		ctypeOk := wildcard.MatchSimple("application/x-www-form-urlencoded*", r.Header.Get(xhttp.ContentType))
    		authOk := wildcard.MatchSimple(signV4Algorithm+"*", r.Header.Get(xhttp.Authorization))
    		noQueries := len(r.URL.RawQuery) == 0
    		return ctypeOk && authOk && noQueries
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/analyzers_test.go

    		},
    	},
    	{
    		name: "Application Pod SecurityContext with UID 1337",
    		inputFiles: []string{
    			"testdata/pod-sec-uid.yaml",
    		},
    		analyzer: &deployment.ApplicationUIDAnalyzer{},
    		expected: []message{
    			{msg.InvalidApplicationUID, "Pod pod-sec-uid"},
    		},
    	},
    	{
    		name: "Application Container SecurityContext with UID 1337",
    		inputFiles: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. cmd/data-scanner.go

    			// subsequent lifecycle policy applications
    			objectInfos = append(objectInfos, obj)
    			continue
    		}
    
    		// NoncurrentDays not passed yet.
    		if time.Now().UTC().Before(lifecycle.ExpectedExpiryTime(obj.SuccessorModTime, event.NoncurrentDays)) {
    			// add this version back to remaining versions for
    			// subsequent lifecycle policy applications
    			objectInfos = append(objectInfos, obj)
    			continue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top