Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 138 for droplet (0.26 sec)

  1. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

    containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. src/crypto/elliptic/elliptic_test.go

    		}
    	}
    
    	p := curve.Params().P
    	_, x, y, _ := GenerateKey(curve, rand.Reader)
    	xx, yy := new(big.Int), new(big.Int)
    
    	// Check if the sign is getting dropped.
    	xx.Neg(x)
    	checkIsOnCurveFalse("-x, y", xx, y)
    	yy.Neg(y)
    	checkIsOnCurveFalse("x, -y", x, yy)
    
    	// Check if negative values are reduced modulo P.
    	xx.Sub(x, p)
    	checkIsOnCurveFalse("x-P, y", xx, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 02:00:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

                synchronized ( this ) {
                    log.debug("Usage dropped to zero, release session");
                    if ( this.sessionAcquired.compareAndSet(true, false) ) {
                        this.session.release();
                    }
                }
            }
            else if ( usage < 0 ) {
                log.error("Usage count dropped below zero " + this);
                dumpResource();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

     * plugins {
     *     id 'java'
     * }
     *
     * task myJavadocs(type: Javadoc) {
     *   source = sourceSets.main.allJava
     * }
     * </pre>
     *
     * <p>
     * An example how to create a task that runs a custom doclet implementation:
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * configurations {
     *   jaxDoclet
     * }
     *
     * dependencies {
     *   //jaxDoclet "some.interesting:Dependency:1.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         */
        AGENT(null, "-agentpath"),
    
        /**
         * The path identified by the Javadoc {@code -doclet} option.
         * The Java tools location is {@link DocumentationTool.Location#DOCLET_PATH}.
         */
        DOCLET(DocumentationTool.Location.DOCLET_PATH, "-doclet"),
    
        /**
         * The path identified by the Javadoc {@code -tagletpath} option.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystem.java

            if (statistics.isUnknownEventEncountered()) {
                warningLogger.warn("Dropped VFS state due to lost state");
                return true;
            }
            if (statistics.getErrorWhileReceivingFileChanges().isPresent()) {
                warningLogger.warn("Dropped VFS state due to error while receiving file changes", statistics.getErrorWhileReceivingFileChanges().get());
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 16:22:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // Use in unitchecker.Run will gob.Register all fact types for the returned
    // graph of analyzers but of course not the ones only reachable from
    // dropped analyzers. To avoid inconsistency about which gob types are
    // registered from run to run, Parse itself gob.Registers all the facts
    // only reachable from dropped analyzers.
    // This is not a particularly elegant API, but this is an internal package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/go/printer/printer.go

    			n = pos.Line - p.last.Line
    			if n < 0 { // should never happen
    				n = 0
    			}
    		}
    
    		// at the package scope level only (p.indent == 0),
    		// add an extra newline if we dropped one before:
    		// this preserves a blank line before documentation
    		// comments at the package scope level (issue 2570)
    		if p.indent == 0 && droppedLinebreak {
    			n++
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTreeConnection.java

                        }
                    }
                }
            }
            else if ( usage < 0 ) {
                log.error("Usage count dropped below zero " + this);
                throw new RuntimeCIFSException("Usage count dropped below zero");
            }
        }
    
    
        protected void checkRelease () {
            if ( isConnected() && this.usageCount.get() != 0 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  10. cmd/bucket-replication-metrics.go

    type ReplicationMRFStats struct {
    	LastFailedCount uint64 `json:"failedCount_last5min"`
    	// Count of unreplicated entries that were dropped after MRF retry limit reached since cluster start.
    	TotalDroppedCount uint64 `json:"droppedCount_since_uptime"`
    	// Bytes of unreplicated entries that were dropped after MRF retry limit reached since cluster start.
    	TotalDroppedBytes uint64 `json:"droppedBytes_since_uptime"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top