Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 243 for relabel (0.1 sec)

  1. pkg/api/pod/util.go

    	// or the old pod does not exist in the env.
    	// We will let the feature gate decide whether to use relaxed rules.
    	if oldPodEnvVarNames.Len() == 0 {
    		return false
    	}
    
    	if len(validation.IsEnvVarName(name)) == 0 || len(validation.IsRelaxedEnvVarName(name)) != 0 {
    		// It's either a valid name by strict rules or an invalid name under relaxed rules.
    		// Either way, we'll use strict rules to validate.
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  2. cmd/erasure-metadata.go

    		}
    	}
    	objInfo.Checksum = fi.Checksum
    	objInfo.Inlined = fi.InlineData()
    	// Success.
    	return objInfo
    }
    
    // TransitionInfoEquals returns true if transition related information are equal, false otherwise.
    func (fi FileInfo) TransitionInfoEquals(ofi FileInfo) bool {
    	switch {
    	case fi.TransitionStatus != ofi.TransitionStatus,
    		fi.TransitionTier != ofi.TransitionTier,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

     *
     * This plugin is automatically applied to most projects that build any JVM language source.  It creates a {@link JavaPluginExtension}
     * extension named {@code java} that is used to configure all jvm-related components in the project.
     *
     * It is responsible for configuring the conventions of any {@link SourceSet}s that are present and used by
     * (for example) the Java, Groovy, or Kotlin plugins.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  4. pkg/kubelet/nodestatus/setters.go

    // Setters may partially mutate the node before returning an error.
    type Setter func(ctx context.Context, node *v1.Node) error
    
    // NodeAddress returns a Setter that updates address-related information on the node.
    func NodeAddress(nodeIPs []net.IP, // typically Kubelet.nodeIPs
    	validateNodeIPFunc func(net.IP) error, // typically Kubelet.nodeIPValidator
    	hostname string, // typically Kubelet.hostname
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    	b.pb.uint64s(tagSample_Location, locs)
    	if labels != nil {
    		labels()
    	}
    	b.pb.endMessage(tagProfile_Sample, start)
    	b.flush()
    }
    
    // pbLabel encodes a Label message to b.pb.
    func (b *profileBuilder) pbLabel(tag int, key, str string, num int64) {
    	start := b.pb.startMessage()
    	b.pb.int64Opt(tagLabel_Key, b.stringIndex(key))
    	b.pb.int64Opt(tagLabel_Str, b.stringIndex(str))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. cmd/bucket-policy-handlers_test.go

    		}
    	}
    
    	// Test for Anonymous/unsigned http request.
    	// Bucket policy related functions doesn't support anonymous requests, setting policies shouldn't make a difference.
    	bucketPolicyStr := fmt.Sprintf(bucketPolicyTemplate, bucketName, bucketName)
    	// create unsigned HTTP request for PutBucketPolicyHandler.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

             * - a part of the input artifact {@link PartOfInputArtifact}
             * - a produced output in the workspace {@link ProducedExecutionOutput}
             *
             * Only outputs related to the input artifact need resolving.
             */
            protected interface TransformExecutionOutput {
                TransformWorkspaceOutput resolveForWorkspace(File workspaceDir);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                int hash = (auth.getUsername() + auth.getPassword()).hashCode();
                buffer.append(hash).append('@');
            }
    
            // consider the URL (instead of the id) as this most closely relates to the contents in the repo
            buffer.append(repository.getUrl());
    
            return buffer.toString();
        }
    
        private void writeLastUpdated(File touchfile, String key, String error) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. pkg/kubelet/status/generate.go

    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const (
    	// UnknownContainerStatuses says that all container statuses are unknown.
    	UnknownContainerStatuses = "UnknownContainerStatuses"
    	// PodCompleted says that all related containers have succeeded.
    	PodCompleted = "PodCompleted"
    	// PodFailed says that the pod has failed and as such the containers have failed.
    	PodFailed = "PodFailed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 15:18:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    	)
    
    	// CLI: -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    	//
    	// DESC: Anything that's already in conntrack as an established connection, accept
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE,
    		"-p", "tcp",
    		"-m", "conntrack",
    		"--ctstate", "RELATED,ESTABLISHED",
    		"-j", "ACCEPT",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top