Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 143 for mainIvy (0.15 sec)

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

     * <code>Maven</code> channels.<br>
     * 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>.
     *
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/databaseInfoMap.dfprop

        }
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o variousMap: (NotRequired - Default map:{})
        #  The various settings about JDBC task mainly.
        #
        ; variousMap = map:{
            # o objectTypeTargetList: (NotRequired - Default list:{TABLE;VIEW})
            #  If you want to include other object types in generating target,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
  3. pkg/config/labels/instance.go

    	for k, v1 := range i {
    		if v2, ok := that[k]; !ok || v1 != v2 {
    			return false
    		}
    	}
    	return true
    }
    
    // Match is true if the label has same values for the keys.
    // if len(i) == 0, will return false. It is mainly used for service -> workload
    func (i Instance) Match(that Instance) bool {
    	if len(i) == 0 {
    		return false
    	}
    
    	return i.SubsetOf(that)
    }
    
    // Equals returns true if the labels are equal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/store.go

    	delete(s.instancesBySE, key)
    }
    
    // stores all the services converted from serviceEntries
    type serviceStore struct {
    	// services keeps track of all services - mainly used to return from Services() to avoid reconversion.
    	servicesBySE   map[types.NamespacedName][]*model.Service
    	allocateNeeded bool
    }
    
    // getAllServices return all the services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/c/eager/gradients.h

      // a trainable dtype.
      bool ShouldRecord(
          absl::Span<const AbstractTensorHandle* const> tensors) const;
      // Unwatches this tensor on the tape. Mainly used for cleanup when deleting
      // eager tensors.
      void DeleteTrace(const AbstractTensorHandle*);
    
      // Consumes the internal state of the tape (so cannot be called more than
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  6. internal/etag/reader.go

    // returns ETag of the content. Otherwise, it returns
    // nil as ETag.
    //
    // Wrap provides an adapter for io.Reader implementations
    // that don't implement the Tagger interface.
    // It is mainly used to provide a high-level io.Reader
    // access to the ETag computed by a low-level io.Reader:
    //
    //	content := etag.NewReader(r.Body, nil)
    //
    //	compressedContent := Compress(content)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top