Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 424 for loadOps (0.49 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/LoadPreviousExecutionStateStepTest.groovy

        def delegateResult = Mock(AfterExecutionResult)
    
        def setup() {
            _ * context.identity >> identity
            _ * context.history >> Optional.of(executionHistoryStore)
        }
    
        def "loads execution history and removes untracked outputs when output is not captured"() {
            when:
            def result = step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/arch.go

    	// SSAGenBlock emits end-of-block Progs. SSAGenValue should be called
    	// for all values in the block before SSAGenBlock.
    	SSAGenBlock func(s *State, b, next *ssa.Block)
    
    	// LoadRegResult emits instructions that loads register-assigned result
    	// at n+off (n is PPARAMOUT) to register reg. The result is already in
    	// memory. Used in open-coded defer return path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/resetconfiguration.go

    		err    error
    	)
    	if cfgPath != "" {
    		// Loads configuration from config file, if provided
    		config, err = LoadResetConfigurationFromFile(cfgPath, opts)
    	} else {
    		config, err = DefaultedResetConfiguration(defaultversionedcfg, opts)
    	}
    	if err == nil {
    		prepareStaticVariables(config)
    	}
    	return config, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/wasmobj.go

    			mov := *p
    			p.As = obj.ANOP
    
    			var loadAs obj.As
    			var storeAs obj.As
    			switch mov.As {
    			case AMOVB:
    				loadAs = AI64Load8U
    				storeAs = AI64Store8
    			case AMOVH:
    				loadAs = AI64Load16U
    				storeAs = AI64Store16
    			case AMOVW:
    				loadAs = AI64Load32U
    				storeAs = AI64Store32
    			case AMOVD:
    				loadAs = AI64Load
    				storeAs = AI64Store
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/ztunnel/configdump/configdump_test.go

    		inputFile   string
    		wantErr     bool
    	}{
    		{
    			name:        "errors if unable to unmarshal bytes",
    			inputFile:   "",
    			wantConfigs: 0,
    			wantErr:     true,
    		},
    		{
    			name:        "loads valid ztunnel config_dump",
    			inputFile:   "testdata/dump.json",
    			wantConfigs: 27,
    			wantErr:     false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			cw := &ConfigWriter{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

    import java.util.function.BiConsumer;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * This is a Java compiler plugin, which must be loaded in the same classloader
     * as the one which loads the JDK compiler itself. For this reason this task lives
     * in its own subproject and uses as little dependencies as possible (in particular
     * it only depends on JDK types).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/TransformExecutionResultSerializerTest.groovy

            loadedResults.resolveForWorkspace(outputDir).resolveForInputArtifact(newInputArtifact) == resultResolvedForNewInputArtifact
        }
    
        def "loads files in output directory relative to output directory"() {
            def newOutputDir = file("newOutputDir").createDir()
    
            ImmutableList<File> resultFiles = ImmutableList.of(
                inputArtifact,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/meta/lazy.go

    func NewLazyRESTMapperLoader(fn func() (RESTMapper, error)) RESTMapper {
    	obj := &lazyObject{loader: fn}
    	return obj
    }
    
    // init lazily loads the mapper and typer, returning an error if initialization has failed.
    func (o *lazyObject) init() error {
    	o.lock.Lock()
    	defer o.lock.Unlock()
    	if o.loaded {
    		return o.err
    	}
    	o.mapper, o.err = o.loader()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  9. src/net/lookup_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix || js || wasip1
    
    package net
    
    import (
    	"context"
    	"internal/bytealg"
    	"sync"
    )
    
    var onceReadProtocols sync.Once
    
    // readProtocols loads contents of /etc/protocols into protocols map
    // for quick access.
    func readProtocols() {
    	file, err := open("/etc/protocols")
    	if err != nil {
    		return
    	}
    	defer file.close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CustomPluginIntegrationTest.groovy

    buildscript {
        dependencies {
            classpath files('external.jar')
        }
    }
    apply plugin: 'custom'
    assert 'value' == prop
    task test
    '''
    
            expect:
            succeeds('test')
        }
    
        void "loads plugin in correct environment"() {
            given:
            def implClassName = 'com.google.common.collect.Multimap'
            ArtifactBuilder builder = artifactBuilder()
            builder.sourceFile('CustomPlugin.groovy') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top