Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for content_es (0.16 sec)

  1. ci/official/envs/macos_x86_cross_compile

    TFCI_MACOS_CROSS_COMPILE_ENABLE=1
    TFCI_MACOS_CROSS_COMPILE_SDK_DEST="tensorflow/tools/toolchains/cross_compile/cc/MacOSX.sdk"
    TFCI_MACOS_CROSS_COMPILE_SDK_SOURCE="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 23:38:12 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

         *
         * Library modules (including library sources) do not need to be considered modified, so any caches related to library modules and their
         * contents may be kept.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/inputFiles/kotlin/build.gradle.kts

        source = fileTree("src/main/java").matching { include("org/gradle/api/**") }
    
        // Using a closure to specify the source files.
        setSource({
            // Use the contents of each zip file in the src dir
            file("src").listFiles().filter { it.name.endsWith(".zip") }.map { zipTree(it) }
        })
    }
    // end::set-input-files[]
    
    // tag::add-input-files[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/README.md

      }
    });
    ```
    
    **Warning**: The logs generated by this interceptor when using the `HEADERS` or `BODY` levels have
    the potential to leak sensitive information such as "Authorization" or "Cookie" headers and the
    contents of request and response bodies. This data should only be logged in a controlled way or in
    a non-production environment.
    
    You can redact headers that may contain sensitive information by calling `redactHeader()`.
    ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    When present in a Maven module, the file must have the extension `module`. For example, in version 1.2 of 'mylib', the file should be called `mylib-1.2.module`.
    
    Gradle ignores the contents of the Maven POM when the module metadata file is present.
    
    ## Contents
    
    The file must be encoded using UTF-8.
    
    The file must contain a JSON object with the following values:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/build/PATENTS

    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/PATENTS

    no-charge, royalty-free, irrevocable (except as stated in this section)
    patent license to make, have made, use, offer to sell, sell, import,
    transfer and otherwise run, modify and propagate the contents of this
    implementation of Go, where such license applies only to those patent
    claims, both currently owned or controlled by Google and acquired in
    the future, licensable by Google that are necessarily infringed by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. README.md

    object browser built into MinIO Server. Point a web browser running on the host machine to <http://127.0.0.1:9000> and log in with the
    root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.
    
    You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool. See
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_mutate_crash.txt

    		fmt.Fprintf(os.Stderr, "expect at least one new mutation to be written to testdata\n")
    		os.Exit(1)
    	}
    
    	fname := files[0].Name()
    	contents, err := ioutil.ReadFile(filepath.Join(dir, fname))
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if bytes.Equal(contents, []byte("aa")) {
    		fmt.Fprintf(os.Stderr, "newly written testdata entry was not mutated\n")
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top