Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 503 for remSign (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/AbstractResolutionFailureException.java

     *
     * @implNote This class should not be subclassed beyond the existing
     * {@link ConfigurationSelectionException}, {@link ArtifactVariantSelectionException}, and
     * {@link VariantSelectionException} subtypes.  All subtypes should remain immutable.
     */
    @Contextual
    public abstract class AbstractResolutionFailureException extends StyledException implements ResolutionProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/JavaSystemPropertiesHttpTimeoutSettings.java

        public static final int DEFAULT_CONNECTION_TIMEOUT = 30000;
        public static final int DEFAULT_SOCKET_TIMEOUT = 30000;
        /**
         * The default time in milliseconds for an idle connection to remain open.
         * <a href="https://azure.microsoft.com/en-us/blog/new-configurable-idle-timeout-for-azure-load-balancer/">Microsoft Azure closes idle connections after 4 min</a>,
         * so we set our default to be below that.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/ArStaticLibraryArchiver.java

            return super.execute(spec);
        }
    
        private void deletePreviousOutput(StaticLibraryArchiverSpec spec) {
            // Need to delete the previous archive, otherwise stale object files will remain
            if (!spec.getOutputFile().isFile()) {
                return;
            }
            if (!spec.getOutputFile().delete()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top