Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 353 for Lists (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/listers/cr/v1/example.go

    	"k8s.io/client-go/listers"
    	"k8s.io/client-go/tools/cache"
    )
    
    // ExampleLister helps list Examples.
    // All objects returned here must be treated as read-only.
    type ExampleLister interface {
    	// List lists all Examples in the indexer.
    	// Objects returned here must be treated as read-only.
    	List(selector labels.Selector) (ret []*v1.Example, err error)
    	// Examples returns an object that can list and get Examples.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 11:15:04 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/HttpHeadersTest.java

    import com.google.common.base.Joiner;
    import com.google.common.base.Splitter;
    import com.google.common.collect.ImmutableBiMap;
    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.Lists;
    import java.lang.reflect.Field;
    import java.util.List;
    import junit.framework.TestCase;
    
    /**
     * Tests for the HttpHeaders class.
     *
     * @author Kurt Alfred Kluever
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:08:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/JdkCacheDirectory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain.internal;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * Lists available JDKs installed in the global Gradle user home
     */
    public interface JdkCacheDirectory {
        Set<File> listJavaHomes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 848 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultMutableVersionConstraint.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.dependencies;
    
    import com.google.common.collect.Lists;
    import org.gradle.api.artifacts.VersionConstraint;
    import org.gradle.api.internal.artifacts.ImmutableVersionConstraint;
    import org.gradle.api.internal.artifacts.VersionConstraintInternal;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    		}
    		freePieceIdx += len(slots)
    	}
    	state.pendingEntries = pe
    
    	if cap(state.lists) < numVars {
    		state.lists = make([][]byte, numVars)
    	} else {
    		state.lists = state.lists[:numVars]
    		for i := range state.lists {
    			state.lists[i] = nil
    		}
    	}
    }
    
    func (state *debugState) allocBlock(b *Block) *BlockDebug {
    	return &state.blockDebug[b.ID]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t09/ProjectInheritanceTest.java

        // ----------------------------------------------------------------------
    
        /**
         * How the test project is set up:
         *
         * 1. dependencyManagement lists dependencies on a &amp; b,
         *    with an exclusion on c in b.
         * 2. the child project lists a dependency on project a only
         * 3. a depends on b (which is transitive to the child project),
         *    and b depends on c.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. docker/Dockerfile.base

      tcpdump \
      conntrack \
      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
      && apt-get upgrade -y \
      && apt-get clean \
      && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old \
      && update-alternatives --set iptables /usr/sbin/iptables-legacy \
      && update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  8. cmd/metrics-v3-handler.go

    		labels = "`" + labels + "`"
    	}
    	return fmt.Sprintf("| `%s` | `%s` | %s | %s |\n", md.Name, md.Type, md.Help, labels)
    }
    
    // listMetrics - returns a handler that lists all the metrics that could be
    // returned for the requested path.
    //
    // FIXME: It currently only lists `minio_` prefixed metrics.
    func (h *metricsV3Server) listMetrics(path string) http.Handler {
    	// First collect all matching MetricsGroup's
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         */
        public static Collection<? extends File> calculateRoots(Iterable<? extends File> files) {
            List<File> sortedFiles = Lists.newArrayList(files);
            Collections.sort(sortedFiles, FILE_SEGMENT_COMPARATOR);
            List<File> result = Lists.newArrayListWithExpectedSize(sortedFiles.size());
    
            File currentRoot = null;
            for (File file : sortedFiles) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.console;
    
    import com.google.common.collect.Lists;
    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    import org.gradle.internal.logging.format.TersePrettyDurationFormatter;
    import org.gradle.internal.logging.text.StyledTextOutput;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top