Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 121 for setDest (0.12 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

        }
    
        // reflectively invoked by ToolingApiExecution
        void setTargetDist(GradleDistribution targetDist) {
            targetGradleDistribution = targetDist
            toolingApi.setDist(targetGradleDistribution)
        }
    
        GradleDistribution getTargetDist() {
            if (targetGradleDistribution == null) {
                throw new IllegalStateException("targetDist is not yet set by the testing framework")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	items, err := meta.ExtractList(list)
    	if err != nil {
    		return err
    	}
    	err = CreateObjList(prefix, helper, items)
    	if err != nil {
    		return err
    	}
    	return meta.SetList(list, items)
    }
    
    // DeepEqualSafePodSpec returns an example.PodSpec safe for deep-equal operations.
    func DeepEqualSafePodSpec() example.PodSpec {
    	grace := int64(30)
    	return example.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                bundle(name, ['foo', 'bar'])
            }
    
            then:
            sources.hasBundle(name, method)
    
            where:
            name          | method
            'test'        | 'getTest'
            'testBundle'  | 'getTestBundle'
            'test.bundle' | 'getBundle'
            'test.json'   | 'getJson'
            'a.b'         | 'getB'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private static class Holder<T> {
        List<T>[] matrix;
    
        void setList(List<T> list) {}
      }
    
      public void testWildcardCaptured_methodParameter_upperBound() throws Exception {
        TypeToken<Holder<?>> type = new TypeToken<Holder<?>>() {};
        ImmutableList<Parameter> parameters =
            type.method(Holder.class.getDeclaredMethod("setList", List.class)).getParameters();
        assertThat(parameters).hasSize(1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                            performanceResults.setChannel(testExecutions.getString(13));
                            performanceResults.setHost(testExecutions.getString(14));
                            performanceResults.setCleanTasks(ResultsStoreHelper.toList(testExecutions.getObject(15)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/symbolbuilder.go

    	sb.l.SetAttrVisibilityHidden(sb.symIdx, value)
    }
    func (sb *SymbolBuilder) SetNotInSymbolTable(value bool) {
    	sb.l.SetAttrNotInSymbolTable(sb.symIdx, value)
    }
    func (sb *SymbolBuilder) SetSect(sect *sym.Section) { sb.l.SetSymSect(sb.symIdx, sect) }
    
    func (sb *SymbolBuilder) AddBytes(data []byte) {
    	if sb.kind == 0 {
    		sb.kind = sym.SDATA
    	}
    	sb.data = append(sb.data, data...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    	// This is safe to modify without deep-copying the object, as
    	// List objects themselves are never cached.
    	if meta.IsListType(result) && meta.LenList(result) == 0 {
    		if err := meta.SetList(result, []runtime.Object{}); err != nil {
    			scope.err(err, w, req)
    			return
    		}
    	}
    
    	var obj runtime.Object
    	do := func() {
    		obj, err = doTransformObject(ctx, result, options, mediaType.Convert, scope)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private static class Holder<T> {
        List<T>[] matrix;
    
        void setList(List<T> list) {}
      }
    
      public void testWildcardCaptured_methodParameter_upperBound() throws Exception {
        TypeToken<Holder<?>> type = new TypeToken<Holder<?>>() {};
        ImmutableList<Parameter> parameters =
            type.method(Holder.class.getDeclaredMethod("setList", List.class)).getParameters();
        assertThat(parameters).hasSize(1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            this.next = n;
            return true;
        }
    
    
        protected ServerMessageBlock2 getNext () {
            return this.next;
        }
    
    
        protected void setNext ( ServerMessageBlock2 n ) {
            this.next = n;
        }
    
    
        /**
         * @return the response
         */
        @Override
        public ServerMessageBlock2Response getResponse () {
            return null;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/nettest/conntest.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package nettest
    
    import (
    	"bytes"
    	"encoding/binary"
    	"io"
    	"math/rand"
    	"net"
    	"runtime"
    	"sync"
    	"testing"
    	"time"
    )
    
    // MakePipe creates a connection between two endpoints and returns the pair
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top