Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 339 for content_es (0.14 sec)

  1. 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)
  2. 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)
  3. .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)
  4. .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)
  5. 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)
  6. .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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
                    LOGGER.debug("Malformed archive '{}'. Discarding contents.", source.getName(), e);
                }
            });
        }
    
        private BiConsumer<File, ClasspathBuilder.Action> resultBuilder() {
            if (source.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. operator/pkg/helmreconciler/apply_test.go

    				)
    			}
    		})
    	}
    }
    
    func loadData(t *testing.T, file string) *object.K8sObject {
    	contents, err := os.ReadFile(file)
    	if err != nil {
    		t.Fatal(err)
    	}
    	obj, err := object.ParseYAMLToK8sObject(contents)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return obj
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top