Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,820 for palmer (0.25 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/CommandLineActionCreator.java

    /**
     * A factory for creating {@link Action}s from CLI commands.
     */
    public interface CommandLineActionCreator {
        /**
         * Configures the given action creator with a command-line parser.
         */
        void configureCommandLineParser(CommandLineParser parser);
    
        /**
         * Creates an executable action from the given command-line args.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyDainPacker.java

    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    public class SnappyDainPacker implements Packer {
        private final Packer delegate;
    
        public SnappyDainPacker(Packer delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void pack(List<DataSource> inputs, DataTarget output) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_trimpath_test_suffix.txt

    -- pkg.go --
    package pkg_test
    
    import "runtime"
    
    func PrintFile() {
    	_, file, _, _ := runtime.Caller(0)
    	println(file)
    }
    
    -- pkg_x_test.go --
    package pkg_test_test
    
    import (
    	"runtime"
    	"testing"
    
    	"example.com/pkg_test"
    )
    
    func PrintFileForTest() {
    	_, file, _, _ := runtime.Caller(0)
    	println(file)
    }
    
    func TestMain(m *testing.M) {
    	pkg_test.PrintFile()
    	PrintFileForTest()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 12 15:17:33 UTC 2021
    - 539 bytes
    - Viewed (0)
  4. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller_test.go

    	"k8s.io/kubernetes/pkg/controller"
    )
    
    func TestSyncClusterRole(t *testing.T) {
    	hammerRules := func() []rbacv1.PolicyRule {
    		return []rbacv1.PolicyRule{
    			{Verbs: []string{"hammer"}, Resources: []string{"nails"}},
    			{Verbs: []string{"hammer"}, Resources: []string{"wedges"}},
    		}
    	}
    	chiselRules := func() []rbacv1.PolicyRule {
    		return []rbacv1.PolicyRule{
    			{Verbs: []string{"chisel"}, Resources: []string{"mortises"}},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

        def packer = Mock(BuildCacheEntryPacker)
        def originFactory = Mock(OriginMetadataFactory)
        def stringInterner = new StringInterner()
        def buildOperationContext = Mock(BuildOperationContext)
        def buildOperationRunner = Mock(BuildOperationRunner)
        PackOperationExecutor packOperationExecutor = new PackOperationExecutor(buildOperationRunner, packer, originFactory, stringInterner)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/LayoutToPropertiesConverterTest.groovy

        }
    
        InitialProperties properties(String... args) {
            def parser = new CommandLineParser()
            def initialPropertiesConverter = new InitialPropertiesConverter()
            initialPropertiesConverter.configure(parser)
            def parsedCommandLine = parser.parse(args)
            return initialPropertiesConverter.convert(parsedCommandLine)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. tensorflow/c/kernels_experimental.h

    // in the plugin for Training. The API takes in the context with indices for
    // the input and value tensors. It also accepts the copy callback provided by
    // pluggable vendor to do the copying of the tensors. The caller takes ownership
    // of the `source` and `dest` tensors and is responsible for freeing them with
    // TF_DeleteTensor. This function will return an error when the following
    // conditions are met:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.AddDTDFilterInputStream;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getAllChilds;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getFirstChildElement;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getFirstChildText;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/syntax.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import (
    	"fmt"
    	"io"
    	"os"
    )
    
    // Mode describes the parser mode.
    type Mode uint
    
    // Modes supported by the parser.
    const (
    	CheckBranches Mode = 1 << iota // check correct use of labels, break, continue, and goto statements
    )
    
    // Error describes a syntax error. Error implements the error interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptionFilteringTest.groovy

            given:
            bytecodeInterceptorFilter = BytecodeInterceptorFilter.ALL
            resetInterceptors()
    
            when:
            def intercepted = interceptedWhen(shouldDelegate, invocation)
    
            then:
            intercepted == expected
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top