Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 706 for remSign (0.28 sec)

  1. pkg/proxy/apis/config/types.go

    	TCPBeLiberal bool
    	// udpTimeout is how long an idle UDP conntrack entry in
    	// UNREPLIED state will remain in the conntrack table
    	// (e.g. '30s'). Must be greater than 0 to set.
    	UDPTimeout metav1.Duration
    	// udpStreamTimeout is how long an idle UDP conntrack entry in
    	// ASSURED state will remain in the conntrack table
    	// (e.g. '300s'). Must be greater than 0 to set.
    	UDPStreamTimeout metav1.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/common/case_format.cc

        wordStart = false;
        // .. or the input:
        inputStart = false;
      }
    
      if (wordStart) {
        // This only happens with a trailing delimiter, which should remain.
        result.push_back(delimiter);
      }
    
      return result;
    }
    
    }  // namespace
    
    //
    // Public interface
    //
    
    string toLowerCamel(const string &s, const char delimiter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/bufio/bufio.go

    		return
    	}
    
    	b.lastByte = -1
    	b.lastRuneSize = -1
    
    	remain := n
    	for {
    		skip := b.Buffered()
    		if skip == 0 {
    			b.fill()
    			skip = b.Buffered()
    		}
    		if skip > remain {
    			skip = remain
    		}
    		b.r += skip
    		remain -= skip
    		if remain == 0 {
    			return n, nil
    		}
    		if b.err != nil {
    			return n - remain, b.readErr()
    		}
    	}
    }
    
    // Read reads data into p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  4. pkg/registry/storage/csidriver/strategy.go

    	return false
    }
    
    // PrepareForUpdate clears the fields for which the corresponding feature is disabled and
    // existing object does not already have that field set. This allows the field to remain when
    // downgrading to a version that has the feature disabled.
    func (csiDriverStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    	newCSIDriver := obj.(*storage.CSIDriver)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:01:37 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/lds.go

    			// Waypoint proxies have a matcher against pod IPs in them. Historically, any LDS change would do a full
    			// push, recomputing push context. Doing that on every IP change doesn't scale, so we need these to remain
    			// incremental pushes.
    			// This allows waypoints only to push LDS on incremental pushes to Address type which would otherwise be skipped.
    			return true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

         * about Java classpath or anything alike. How artifact is being consumed depends heavily on the consumer project.
         * Resolver is and will remain agnostic of consumer project use cases.
         */
        public static final String CONSTITUTES_BUILD_PATH = "constitutesBuildPath";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXGroup.java

         */
        public enum SortPolicy {
            /**
             * By name, in default Java sort order.
             */
            BY_NAME,
    
            /**
             * Group contents will not be sorted, and will remain in the
             * order they were added.
             */
            UNSORTED;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultPlanExecutorTest.groovy

        def executor = new DefaultPlanExecutor(new DefaultWorkerLimits(1), executorFactory, workerLeaseService, cancellationHandler, coordinationService, new DefaultInternalOptions([:]))
    
        def "executes tasks until no further tasks remain"() {
            def gradle = Mock(Gradle)
            def project = Mock(Project)
            def node = Mock(LocalTaskNode)
            def task = Mock(TaskInternal)
            def state = Mock(TaskStateInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/artifact/MavenArtifactProperties.java

         * about Java classpath or anything alike. How artifact is being consumed depends heavily on the consumer project.
         * Resolver is and will remain agnostic of consumer project use cases.
         */
        public static final String CONSTITUTES_BUILD_PATH = "constitutesBuildPath";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types.go

    type PartialObjectMetadata = v1.PartialObjectMetadata
    
    // IMPORTANT: PartialObjectMetadataList has different protobuf field ids in v1beta1 than
    // v1 because ListMeta was accidentally omitted prior to 1.15. Therefore this type must
    // remain independent of v1.PartialObjectMetadataList to preserve mappings.
    
    // PartialObjectMetadataList contains a list of objects containing only their metadata.
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 3.1K bytes
    - Viewed (0)
Back to top