Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 583 for representing (0.27 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ivy/IvyExtraInfo.java

         */
        @Nullable
        String get(String namespace, String name);
    
        /**
         * Returns a map view of the 'extra' info elements such that each key is a javax.xml.namespace.QName
         * representing the namespace and name of the element and each value is the content of the element.
         *
         * @return The map view of the extra info elements. Returns an empty map if there are no elements.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    /**
     * Constructs an SmbFile representing a resource on an SMB network such
     * as a file or directory from a <tt>URL</tt> object.
     *
     * @param   url The URL of the target resource
     */
        public SmbFile( URL url ) {
            this( url, new NtlmPasswordAuthentication( url.getUserInfo() ));
        }
    /**
     * Constructs an SmbFile representing a resource on an SMB network such
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ClassLoaderStructureProvider.java

            return new HierarchicalClassLoaderStructure(gradleApiFilter)
                    .withChild(userSpec);
        }
    
        /**
         * Returns a spec representing the combined "user" classloader for the given classes and additional classpath.  The user classloader assumes it is used as a child of a classloader with the Gradle API.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapDifference.java

    import com.google.errorprone.annotations.DoNotMock;
    import java.util.Map;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An object representing the differences between two maps.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @DoNotMock("Use Maps.difference")
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRoles.java

     */
    
    package org.gradle.api.internal.artifacts.configurations;
    
    import com.google.common.collect.ImmutableSet;
    
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Defines {@link ConfigurationRole}s representing common allowed usage patterns.
     *
     * These should be preferred over defining custom roles; whenever possible.  Use {@link #byUsage(boolean, boolean, boolean)}
     * to attempt to locate a matching role by its usage characteristics.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. src/runtime/os_illumos.go

    		lflags := rctlblk_get_local_flags(unsafe.Pointer(rblk))
    		action := rctlblk_get_local_action(unsafe.Pointer(rblk))
    		if (lflags&_RCTL_LOCAL_MAXIMAL) == 0 && action == _RCTL_LOCAL_DENY {
    			// This is a finite (not maximal) value representing a
    			// cap (deny) action.
    			v := rctlblk_get_value(unsafe.Pointer(rblk))
    			if capval == 0 || capval > v {
    				capval = v
    			}
    		}
    
    		// Swap the blocks around so that we can fetch the next value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PredicatesFile.java

         * <p>
         * The csv is sudo in the sense, that you can comment by using "#"
         *
         * @param resource the resource file being used
         * @return a set of sets of strings representing the values in the file
         */
        public static Set<Set<String>> readAllowedCombinations(String resource) {
            try (BufferedReader reader = new BufferedReader(
                new InputStreamReader(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/runtime/pprof/label.go

    		childLabels[k] = v
    	}
    	for _, label := range labels.list {
    		childLabels[label.key] = label.value
    	}
    	return context.WithValue(ctx, labelContextKey{}, &childLabels)
    }
    
    // Labels takes an even number of strings representing key-value pairs
    // and makes a [LabelSet] containing them.
    // A label overwrites a prior label with the same key.
    // Currently only the CPU and goroutine profiles utilize any labels
    // information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolverResults.java

         *
         * <strong>This method should only be used to implement existing legacy public API methods.</strong>
         */
        LegacyResolverResults getLegacyResults();
    
        /**
         * Return the model representing the resolved graph. This model provides access
         * to the root component as well as any failure that occurred while resolving the graph.
         */
        VisitedGraphResults getVisitedGraph();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 03:03:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.Build;
    import org.apache.maven.api.model.Model;
    
    /**
     * Interface representing a Maven project which can be created using the
     * {@link org.apache.maven.api.services.ProjectBuilder} service.
     * Such objects are immutable and plugin that wish to modify such objects
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top