Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,114 for Size (0.07 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            }
        }
    
        void eachScriptIsUnique(List<ClassDetails> scripts) {
            assert scripts.collect { it.path }.unique().size() == scripts.size()
            assert scripts.collect { it.className }.unique().size() == scripts.size()
            assert scripts.collect { it.classpath }.unique().size() == scripts.size()
        }
    
        List<ClassDetails> scriptDetails(String text = result.output) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/registry/registry_test.go

    func testGetValue(t *testing.T, k registry.Key, test ValueTest, size int) {
    	if size <= 0 {
    		return
    	}
    	// read data with no buffer
    	gotsize, gottype, err := k.GetValue(test.Name, nil)
    	if err != nil {
    		t.Errorf("GetValue(%s, [%d]byte) failed: %v", test.Name, size, err)
    		return
    	}
    	if gotsize != size {
    		t.Errorf("want %s value size of %d, got %v", test.Name, size, gotsize)
    		return
    	}
    	if gottype != test.Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/imagepolicy/v1alpha1/generated.pb.go

    }
    
    func (m *ImageReview) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *ImageReview) MarshalTo(dAtA []byte) (int, error) {
    	size := m.Size()
    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pcln.go

    // It is the caller's responsibility to save the symbol in state.
    func (state *pclntab) addGeneratedSym(ctxt *Link, name string, size int64, f generatorFunc) loader.Sym {
    	size = Rnd(size, int64(ctxt.Arch.PtrSize))
    	state.size += size
    	s := ctxt.createGeneratorSymbol(name, 0, sym.SPCLNTAB, size, f)
    	ctxt.loader.SetAttrReachable(s, true)
    	ctxt.loader.SetCarrierSym(s, state.carrier)
    	ctxt.loader.SetAttrNotInSymbolTable(s, true)
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            classpath.applicationModulepath == [new File("mod.jar")]
            classpath.implementationClasspath.size() == NUM_INTERNAL_JARS + NUM_EXTERNAL_JARS
            classpath.implementationClasspath.findAll { it.toString().endsWith("-internal.jar") }.size() == NUM_INTERNAL_JARS
            classpath.implementationClasspath.findAll { it.toString().endsWith("-external.jar") }.size() == NUM_EXTERNAL_JARS
            classpath.implementationModulepath.isEmpty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Collections2.java

          }
        }
        return sb.append(']').toString();
      }
    
      /** Returns best-effort-sized StringBuilder based on the given collection size. */
      static StringBuilder newStringBuilderForCollection(int size) {
        checkNonnegative(size, "size");
        return new StringBuilder((int) Math.min(size * 8L, Ints.MAX_POWER_OF_TWO));
      }
    
      /**
       * Returns a {@link Collection} of all the permutations of the specified {@link Iterable}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactHashSet.java

          newDelegate.addAll(delegate);
          this.table = newDelegate;
          return;
        }
        int size = this.size;
        if (size < requireEntries().length) {
          resizeEntries(size);
        }
        int minimumTableSize = CompactHashing.tableSize(size);
        int mask = hashTableMask();
        if (minimumTableSize < mask) { // smaller table size will always be less than current mask
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. src/runtime/memmove_test.go

    		t.Skip("-quick")
    	}
    	t.Parallel()
    	size := 256
    	if testing.Short() {
    		size = 128 + 16
    	}
    	src := make([]byte, size)
    	dst := make([]byte, size)
    	for i := 0; i < size; i++ {
    		src[i] = byte(128 + (i & 127))
    	}
    	for i := 0; i < size; i++ {
    		dst[i] = byte(i & 127)
    	}
    	for n := 0; n <= size; n++ {
    		for x := 0; x <= size-n; x++ { // offset in src
    			for y := 0; y <= size-n; y++ { // offset in dst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/scheduling/v1alpha1/generated.pb.go

    }
    
    func (m *PriorityClass) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *PriorityClass) MarshalTo(dAtA []byte) (int, error) {
    	size := m.Size()
    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/scheduling/v1beta1/generated.pb.go

    }
    
    func (m *PriorityClass) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    	dAtA = make([]byte, size)
    	n, err := m.MarshalToSizedBuffer(dAtA[:size])
    	if err != nil {
    		return nil, err
    	}
    	return dAtA[:n], nil
    }
    
    func (m *PriorityClass) MarshalTo(dAtA []byte) (int, error) {
    	size := m.Size()
    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top