Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 777 for content_es (0.11 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileTreeTest.groovy

                getFile() >> { file }
            }
        }
    
        static class TestFileTree extends AbstractFileTree {
            List contents
            TaskDependency builtBy
    
            def TestFileTree(List files, TaskDependency dependencies = null) {
                this.contents = files
                this.builtBy = dependencies
            }
    
            String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/webApplication/customized/readme.xml

    <sample>
        <para>Web application with customized WAR contents.</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 81 bytes
    - Viewed (0)
  3. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableList.java

        private final ArrayList<E> contents;
    
        public Builder() {
          contents = Lists.newArrayList();
        }
    
        Builder(int capacity) {
          contents = Lists.newArrayListWithCapacity(capacity);
        }
    
        @CanIgnoreReturnValue
        @Override
        public Builder<E> add(E element) {
          contents.add(checkNotNull(element));
          return this;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/copycerts/copycerts_test.go

    			t.Fatalf("error reading certificate from disk: %v", err)
    		}
    		// Check that the encrypted contents on the secret match the contents on disk, and that all
    		// the expected certificates are in the secret
    		if string(secretCertData) != string(diskCertData) {
    			t.Fatalf("cert %s does not have the expected contents. contents: %q; expected contents: %q", certName, string(secretCertData), string(diskCertData))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java

         * The returned list of versions is only dependent on the configured repositories and their contents.
         * The supplied request may also refer to a single concrete version rather than a version range.
         * In this case though, the result contains simply the (parsed) input version, regardless of the
         * repositories and their contents.
         *
         * @param session the session to use
         * @param artifactCoordinate t
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaQuickstartIntegrationTest.groovy

            jarFile.assertIsFile()
            // Check contents of Jar
            TestFile jarContents = file('jar')
            jarFile.unzipTo(jarContents)
            jarContents.assertHasDescendants(
                'META-INF/MANIFEST.MF',
                'org/gradle/Person.class',
                'org/gradle/resource.xml'
            )
    
            // Check contents of manifest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            System.properties['java.home'] = software.file('Contents/Home').absolutePath
            System.properties['java.version'] = '1.9'
            Jvm java9Vm = new Jvm(macOs)
    
            then:
            java9Vm.javaHome == software.file('Contents/Home')
            java9Vm.javaExecutable == software.file('Contents/Home/bin/java')
            java9Vm.javacExecutable == software.file('Contents/Home/bin/javac')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. .github/workflows/contributor-pr.yml

      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
      build:
        name: "Compile All"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    	appendConstraint := func(contents []byte, tag uint8) []byte {
    		contents = append(contents, tag|32 /* constructed */ |0x80 /* context-specific */)
    		contents = append(contents, byte(4+len(constraint)) /* length */)
    		contents = append(contents, 0x30 /* SEQUENCE */)
    		contents = append(contents, byte(2+len(constraint)) /* length */)
    		contents = append(contents, byte(typeNum) /* GeneralName type */)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/kotlin/build.gradle.kts

    plugins {
        id("org.gradle.sample.download")
    }
    
    download {
        // Can use a block to configure the container contents
        resources {
            register("gradle") {
                uri = uri("https://gradle.org")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
Back to top