Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 704 for Grappler (0.32 sec)

  1. platforms/extensibility/test-kit/build.gradle.kts

        implementation(projects.io)
        implementation(project(":wrapper-shared"))
        implementation(project(":build-process-services"))
    
        implementation(libs.commonsIo)
    
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(project(":launcher"))
        testFixturesImplementation(project(":tooling-api"))
        testFixturesImplementation(project(":wrapper-shared"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorTest.java

            SomeBean bean = new SomeBean();
    
            Xpp3Dom config = toConfig("<wrapper><file>test</file></wrapper>");
    
            DefaultBeanConfigurationRequest request = new DefaultBeanConfigurationRequest();
            request.setBean(bean).setConfiguration(config, "wrapper");
    
            configurator.configureBean(request);
    
            assertEquals(new File("test"), bean.file);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm_test.go

    			t.Errorf("test[%v]: authentication failed", i)
    		}
    	}
    }
    
    var _ cipher.Block = (*wrapper)(nil)
    
    type wrapper struct {
    	block cipher.Block
    }
    
    func (w *wrapper) BlockSize() int          { return w.block.BlockSize() }
    func (w *wrapper) Encrypt(dst, src []byte) { w.block.Encrypt(dst, src) }
    func (w *wrapper) Decrypt(dst, src []byte) { w.block.Decrypt(dst, src) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtils.java

            ImmutableSortedMap.Builder<String, Map<Equivalence.Wrapper<Method>, Collection<Method>>> candidatesBuilder = ImmutableSortedMap.naturalOrder();
            for (String methodName : methodsByName.keySet()) {
                ImmutableList<Method> methodsWithSameName = methodsByName.get(methodName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // as defaulting in the scheme is done as part of the conversion, and there would
    // be no easy way to opt-out. Instead, if you want to use this defaulting method
    // run it in your wrapper struct of this type in its `SetDefaults_` method.
    func RecommendedDefaultPersistentVolumeBinderControllerConfiguration(obj *kubectrlmgrconfigv1alpha1.PersistentVolumeBinderControllerConfiguration) {
    	zero := metav1.Duration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. .github/workflows/maven_build_itself.yml

              distribution: 'temurin'
              cache: 'maven'
    
          - name: Set up Maven
            run:
              mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
    
          - name: Build with Maven
            run: ./mvnw install -e -B -V -DdistributionFileName=apache-maven
    
          - name: Extract tarball
            shell: bash
            run: |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    The `build` task compiles the ${language.raw} sources, links the object files into a shared library, and runs the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/closure.go

    		}
    		addr.Prealloc = x
    		n.Prealloc = nil
    	}
    
    	return walkExpr(cfn, init)
    }
    
    // methodValueWrapper returns the ONAME node representing the
    // wrapper function (*-fm) needed for the given method value. If the
    // wrapper function hasn't already been created yet, it's created and
    // added to typecheck.Target.Decls.
    func methodValueWrapper(dot *ir.SelectorExpr) *ir.Name {
    	if dot.Op() != ir.OMETHVALUE {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. cmd/object_api_suite_test.go

    	eof  bool
    	data []byte
    }
    
    func (r *testOneByteReadNoEOF) Read(p []byte) (n int, err error) {
    	if r.eof {
    		return 0, io.EOF
    	}
    	n = copy(p, r.data)
    	r.eof = true
    	return n, nil
    }
    
    // Wrapper for calling testMakeBucket for both Erasure and FS.
    func TestMakeBucket(t *testing.T) {
    	ExecObjectLayerTest(t, testMakeBucket)
    }
    
    // Tests validate bucket creation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. pkg/controller/replication/replication_controller.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // ### ATTENTION ###
    //
    // ReplicationManager is now just a wrapper around ReplicaSetController,
    // with a conversion layer that effectively treats ReplicationController
    // as if it were an older API version of ReplicaSet.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top