Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,821 for target (0.17 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        /**
         * Returns the authentication target.
         *
         * @return A <code>String</code> containing the authentication target.
         */
        public String getTarget() {
            return target;
        }
    
        /**
         * Sets the authentication target.
         *
         * @param target The authentication target.
         */
        public void setTarget(String target) {
            this.target = target;
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.6K bytes
    - Viewed (0)
  2. deps.xml

    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${thumbnail.dir}/lib"/>
    	</target>
    
    	<target name="install.plugin.jar">
    		<get dest="${target.dir}">
    			<url url="${repo.url}/${jar.groupId}/${jar.artifactId}/${jar.version}/${jar.artifactId}-${file.version}.jar" />
    		</get>
    		<copy file="${target.dir}/${jar.artifactId}-${file.version}.jar"
    			todir="${webinf.dir}/plugin"/>
    	</target>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:44:26 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 1;
    
      // target specifies the target value for the given metric
      optional MetricTarget target = 2;
    }
    
    // ExternalMetricStatus indicates the current value of a global metric
    // not associated with any Kubernetes object.
    message ExternalMetricStatus {
      // metric identifies the target metric by name and selector
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  4. docs/zh/docs/external-links.md

    ## 文章
    
    ### 英文
    
    {% if external_links %}
    {% for article in external_links.articles.english %}
    
    * <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
    {% endfor %}
    {% endif %}
    
    ### 日文
    
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sat Mar 30 22:45:29 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/autoscaling/v1/generated.proto

    // each of the pods of the current scale target(e.g. CPU or memory). The values will be
    // averaged together before being compared to the target. Such metrics are built into
    // Kubernetes, and have special scaling options on top of those available to
    // normal per-pod metrics using the "pods" source. Only one "target" type
    // should be set.
    message ContainerResourceMetricSource {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/FileToRawModelMerger.java

     * All others can simply be copied from source to target to restore the locationTracker
     *
     * @since 4.0.0
     */
    class FileToRawModelMerger extends MavenMerger {
    
        @Override
        protected void mergeBuild_Extensions(
                Build.Builder builder, Build target, Build source, boolean sourceDominant, Map<Object, Object> context) {
            // don't merge
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  7. internal/logger/target/kafka/kafka.go

    	return nil
    }
    
    // Name returns the name of the target
    func (h *Target) Name() string {
    	return "minio-kafka-audit"
    }
    
    // Endpoint - return kafka target
    func (h *Target) Endpoint() string {
    	return "kafka"
    }
    
    // String - kafka string
    func (h *Target) String() string {
    	return "kafka"
    }
    
    // Stats returns the target statistics.
    func (h *Target) Stats() types.TargetStats {
    	h.logChMu.RLock()
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 10.1K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/primitives/Shorts.java

       * i, i + target.length)} contains exactly the same elements as {@code target}.
       *
       * @param array the array to search for the sequence {@code target}
       * @param target the array to search for as a sub-sequence of {@code array}
       */
      public static int indexOf(short[] array, short[] target) {
        checkNotNull(array, "array");
        checkNotNull(target, "target");
        if (target.length == 0) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 25.1K bytes
    - Viewed (0)
  9. internal/logger/config.go

    		envs := env.List(legacyEnvLoggerHTTPEndpoint)
    		for _, k := range envs {
    			target := strings.TrimPrefix(k, legacyEnvLoggerHTTPEndpoint+config.Default)
    			if target == legacyEnvLoggerHTTPEndpoint {
    				target = config.Default
    			}
    			loggerTargets = append(loggerTargets, target)
    		}
    
    		// Load HTTP logger from the environment if found
    		for _, target := range loggerTargets {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  10. plugin.xml

    		</antcall>
    
    		<antcall target="remove.jars" />
    	</target>
    
    	<target name="install.plugin">
    		<get dest="${target.dir}">
    			<url url="${repo.url}/${plugin.groupId}/${plugin.name.prefix}${plugin.name}/${plugin.version}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip" />
    		</get>
    		<unzip dest="${plugins.dir}/${plugin.name}" src="${target.dir}/${plugin.name.prefix}${plugin.name}-${plugin.zip.version}.zip">
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 3.5K bytes
    - Viewed (1)
Back to top