Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for mainIvy (0.13 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

     * using standard Maven channels.
     * There should be no big surprises here, although you may notice that the methods accept
     * <code>java.lang.CharSequence</code> rather than <code>java.lang.String</code>. This is provided mainly as a
     * convenience, to enable developers to pass things like <code>java.lang.StringBuffer</code> directly into the logger,
     * rather than formatting first by calling <code>toString()</code>.
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/documentMap.dfprop

    # *The line that starts with '#' means comment-out.
    #
    map:{
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o documentOutputDirectory: (NotRequired - Default './output/doc')
        #  The output directory mainly for SchemaHtml and DataXlsTemplate.
        #  Basically you don't need this.
        #  It is considered of value that it always exists at same plain.
        #
        #; documentOutputDirectory = ./output/doc
        # - - - - - - - - - -/
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/webhook/gencerts.sh

    # limitations under the License.
    
    set -e
    
    # gencerts.sh generates the certificates for the webhook tests.
    #
    # It is not expected to be run often (there is no go generate rule), and mainly
    # exists for documentation purposes.
    
    CN_BASE="webhook_tests"
    
    cat > intermediate_ca.conf << EOF
    [ v3_ca ]
    subjectKeyIdentifier=hash
    authorityKeyIdentifier=keyid:always,issuer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 15:57:40 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    // instFormat is a decoding rule for one specific instruction form.
    // an instruction ins matches the rule if ins&Mask == Value
    // DontCare bits should be zero, but the machine might not reject
    // ones in those bits, they are mainly reserved for future expansion
    // of the instruction set.
    // The Args are stored in the same order as the instruction manual.
    //
    // Prefixed instructions are stored as:
    //
    //	prefix << 32 | suffix,
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. docs/distributed/DECOMMISSION.md

    ```
    λ mc admin decommission status alias/ http://minio{1...2}/data{1...4}
    ERROR: This pool is not scheduled for decommissioning currently.
    ```
    
    ## Canceling a decommission
    
    Stop an on-going decommission in progress, mainly used in situations when the load may be too high and you may want to schedule the decommission at a later point in time.
    
    `mc admin decommission cancel` without an argument, lists out any on-going decommission in progress.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/node_expander.go

    	}
    }
    
    // testResponseData is merely used for doing sanity checks in unit tests
    type testResponseData struct {
    	// indicates that resize operation was called on underlying volume driver
    	// mainly useful for testing.
    	resizeCalledOnPlugin bool
    
    	// Indicates whether kubelet should assume resize operation as finished.
    	// For kubelet - resize operation could be assumed as finished even if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter.go

    // (normally found in the build cache, but located in GOROOT/pkg
    // in prior Go releases) for the package located in pkgDir.
    //
    // (We use the package's directory instead of its import path
    // mainly to simplify handling of the packages in src/vendor
    // and cmd/vendor.)
    func lookupGorootExport(pkgDir string) (string, error) {
    	f, ok := exportMap.Load(pkgDir)
    	if !ok {
    		var (
    			listOnce   sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

    // prior to importing the graph. The primary goal is for support of custom ops.
    // This is not intended to be a general solution for custom ops for the future
    // but mainly for supporting older models like mobilenet_ssd. More appropriate
    // mechanisms, such as op hints or using functions to represent composable ops
    // like https://github.com/tensorflow/community/pull/113 should be encouraged
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/webhooks/validation/server/server.go

    	// e.g. cluster.local.
    	DomainSuffix string
    
    	// Port where the webhook is served. the number should be greater than 1024 for non-root
    	// user, because non-root user cannot bind port number less than 1024
    	// Mainly used for testing. Webhook server is started by Istiod.
    	Port uint
    
    	// Use an existing mux instead of creating our own.
    	Mux *http.ServeMux
    }
    
    // String produces a stringified version of the arguments for debugging.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 04 06:13:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. src/compress/gzip/gzip.go

    	z.digest = crc32.Update(z.digest, crc32.IEEETable, p)
    	n, z.err = z.compressor.Write(p)
    	return n, z.err
    }
    
    // Flush flushes any pending compressed data to the underlying writer.
    //
    // It is useful mainly in compressed network protocols, to ensure that
    // a remote reader has enough data to reconstruct a packet. Flush does
    // not return until the data has been written. If the underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top