Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 776 for content_es (0.11 sec)

  1. src/os/dir.go

    	"internal/filepathlite"
    	"io"
    	"io/fs"
    	"slices"
    )
    
    type readdirMode int
    
    const (
    	readdirName readdirMode = iota
    	readdirDirEntry
    	readdirFileInfo
    )
    
    // Readdir reads the contents of the directory associated with file and
    // returns a slice of up to n [FileInfo] values, as would be returned
    // by [Lstat], in directory order. Subsequent calls on the same file will yield
    // further FileInfos.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/groovy/build.gradle

        type 'rpm'
        builtBy 'rpm'
    }
    // end::custom-artifact[]
    
    tasks.register('rpm') {
        outputs.file rpmFile
        doLast {
            // produce real RPM here
            rpmFile.get().asFile << 'file contents'
        }
    }
    
    // tag::custom-artifact-publication[]
    publishing {
        publications {
            maven(MavenPublication) {
                artifact rpmArtifact
            }
        }
    // end::custom-artifact-publication[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 933 bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/VersionStrategy.java

        /**
         * A single cache instance shared by all Gradle versions. It is the caller's responsibility to make sure that this is shared only with
         * those versions of Gradle that are compatible with the cache implementation and contents.
         */
        SharedCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. .github/workflows/update-nightly.yml

    name: Set nightly branch to master HEAD
    
    permissions: {}
    
    jobs:
      master-to-nightly:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: ubuntu-latest
        permissions:
          contents: write
        steps:
        - uses: zofrex/mirror-branch@a8809f0b42f9dfe9b2c5c2162a46327c23d15266 # v1.0.3
          name: Set nightly branch to master HEAD
          with:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:45:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. .github/workflows/go-lint.yml

          - master
    
    # This ensures that previous jobs for the PR are canceled when the PR is
    # updated.
    concurrency:
      group: ${{ github.workflow }}-${{ github.head_ref }}
      cancel-in-progress: true
    
    permissions:
      contents: read
    
    jobs:
      build:
        name: Go ${{ matrix.go-version }} on ${{ matrix.os }}
        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest, Windows]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 22:29:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsSource.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings.building;
    
    import org.apache.maven.building.Source;
    
    /**
     * Provides access to the contents of settings independently of the backing store (e.g. file system, database, memory).
     *
     *
     * @deprecated instead use {@link Source}
     */
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. .github/workflows/cffconvert.yml

    # limitations under the License.
    # ==============================================================================
    
    name: cffconvert
    
    on:
      push:
        paths:
          - CITATION.cff
    
    permissions:
      contents: read
    
    jobs:
      validate:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        name: "validate"
        runs-on: ubuntu-latest
        steps:
          - name: Check out a copy of the repository
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/embedded_protocol_buffers.h

        // `expression`.  It must be visible wherever `expression` is emitted.
        string variable_decl;
      };
    
      // Each cpp_shim corresponds to one embedded protocol buffer.
      std::vector<CPPShim> cpp_shims;
    
      // The contents of the object (".o") file the protocol buffers are embbed in.
      // This needs to be linked in to any program that wants to execute any of the
      // expressions in `cpp_shims`.
      string object_file_data;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/openapi/values_test.go

    					"key": "b",
    					"val": 2,
    				},
    				map[string]interface{}{
    					"key": "a",
    					"val": 1,
    				},
    			}, mapListSchema),
    			equal: true,
    		},
    		{
    			name: "map lists are not equal if contents differs",
    			lhs: UnstructuredToVal([]interface{}{
    				map[string]interface{}{
    					"key": "a",
    					"val": 1,
    				},
    				map[string]interface{}{
    					"key": "b",
    					"val": 2,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

                        throw new GradleException(String.format("Could not list contents of directory '%s' as it is not readable.", file));
                    }
                    // else, might be a link which points to nothing, or has been removed while we're visiting, or ...
                    throw new GradleException(String.format("Could not list contents of '%s'.", file));
                }
                for (File child : children) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top