Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 339 for content_es (0.23 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    func (s1 String) Equal(s2 String) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted string slice.
    func (s String) List() []string {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s String) UnsortedList() []string {
    	return cast(s).UnsortedList()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/LazilyInitializedFileCollection.java

    import org.gradle.api.internal.tasks.DefaultTaskDependencyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    
    import java.util.function.Consumer;
    
    /**
     * A {@link FileCollection} whose contents is created lazily.
     */
    public abstract class LazilyInitializedFileCollection extends CompositeFileCollection {
    
        // Used in a third-party plugin Freefair AspectJ:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    tree = fileTree("dir" to "src", "includes" to listOf("**/*.java", "**/*.xml"))
    tree = fileTree("dir" to "src", "include" to "**/*.java", "exclude" to "**/*test*/**")
    // end::define[]
    
    // tag::use[]
    // Iterate over the contents of a tree
    tree.forEach{ file: File ->
        println(file)
    }
    
    // Filter a tree
    val filtered: FileTree = tree.matching {
        include("org/gradle/api/**")
    }
    
    // Add trees together
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/internal/sysinfo/cpuinfo_linux.go

    	if err != nil && err != io.ErrUnexpectedEOF {
    		return err
    	}
    
    	return nil
    }
    
    func osCPUInfoName() string {
    	modelName := ""
    	cpuMHz := ""
    
    	// The 512-byte buffer is enough to hold the contents of CPU0
    	buf := make([]byte, 512)
    	err := readLinuxProcCPUInfo(buf)
    	if err != nil {
    		return ""
    	}
    
    	scanner := bufio.NewScanner(bytes.NewReader(buf))
    	for scanner.Scan() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/resources/FileCollectionBackedTarArchiveTextResourceTest.groovy

        def setup() {
            def archive = project.file("archive.tar.gz")
            def archiveEntry = project.file("archive/path/to/text")
            archiveEntry.parentFile.mkdirs()
            archiveEntry.text = "contents"
            project.ant.tar(basedir: project.file("archive"), destfile: archive, compression: "gzip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/parallel_execute_util.h

    // can be used to canonicalize IR, so there is always one `ParallelExecute`.
    tf_device::ParallelExecuteOp BuildParallelExecuteOp(
        tf_device::ClusterFuncOp cluster_func, OpBuilder* builder);
    
    // Unwrap `parallel_execute`'s contents if it only has one child.
    LogicalResult RemoveSingletonParallelExecuteOp(
        tf_device::ParallelExecuteOp parallel_execute, OpBuilder* builder);
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 13 03:57:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/package-info.java

     * library.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained">primitive utilities</a>.
     *
     * <h2>Contents</h2>
     *
     * <h3>Value types</h3>
     *
     * <ul>
     *   <li>{@link ImmutableDoubleArray}
     *   <li>{@link ImmutableIntArray}
     *   <li>{@link ImmutableLongrray}
     *   <li>{@link UnsignedInteger}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/software/resources/src/main/java/org/gradle/internal/resource/EmptyFileTextResource.java

        }
    
        @Override
        public boolean getHasEmptyContent() {
            return true;
        }
    
        @Override
        public File getFile() {
            // Returns null as there is no file that contains this resource's contents,
            // however {@link ResourceLocation#getFile()} would still return the given `sourceFile`
            return null;
        }
    
        @Override
        public Charset getCharset() {
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/internal/obscuretestdata/obscuretestdata.go

    		return "", err
    	}
    	if err := tmp.Close(); err != nil {
    		os.Remove(tmp.Name())
    		return "", err
    	}
    	return tmp.Name(), nil
    }
    
    // ReadFile reads the named file and returns its decoded contents.
    func ReadFile(name string) ([]byte, error) {
    	f, err := os.Open(name)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	return io.ReadAll(base64.NewDecoder(base64.StdEncoding, f))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:47:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    func testKubeletConfigMap(contents string) *v1.ConfigMap {
    	return &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      constants.KubeletBaseConfigurationConfigMap,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    			constants.KubeletBaseConfigurationConfigMapKey: dedent.Dedent(contents),
    		},
    	}
    }
    
    func TestKubeletDefault(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top