Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,141 for Size (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

            """
            file('src/main/java').mkdirs()
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.sourceDirectories.size() == 1
            project.sourceDirectories[0].classpathAttributes.size() == 1
            project.sourceDirectories[0].classpathAttributes[0].name == 'customKey'
            project.sourceDirectories[0].classpathAttributes[0].value == 'customValue'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/guava-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/guava/ImmutableListCodec.kt

            writeCollection(value)
        }
    
        override suspend fun ReadContext.decode(): ImmutableList<Any>? {
            val size = readSmallInt()
            val builder = ImmutableList.builderWithExpectedSize<Any>(size)
            for (i in 0 until size) {
                val value = readNonNull<Any>()
                builder.add(value)
            }
            return builder.build()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. .github/workflows/mint/nginx-4-node.conf

            listen  [::]:9000;
            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSet.java

              if (hashTable != null && chooseTableSize(size) == hashTable.length) {
                @Nullable
                Object[] uniqueElements =
                    shouldTrim(size, contents.length) ? Arrays.copyOf(contents, size) : contents;
                result =
                    new RegularImmutableSet<E>(
                        uniqueElements, hashCode, hashTable, hashTable.length - 1, size);
              } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages_test.go

    }
    
    func (*endOfEarlyDataMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &endOfEarlyDataMsg{}
    	return reflect.ValueOf(m)
    }
    
    func (*keyUpdateMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &keyUpdateMsg{}
    	m.updateRequested = rand.Intn(10) > 5
    	return reflect.ValueOf(m)
    }
    
    func (*newSessionTicketMsgTLS13) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &newSessionTicketMsgTLS13{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiGradleLifecycleIntegrationTest.groovy

            file("b/build.gradle") << ""
    
            when:
            withIsolatedProjects()
            def model = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
            model.size() == 2
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
    
            fixture.assertStateStored {
                projectsConfigured(":buildSrc", ":b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func raceread(uintptr)
    func racewrite(uintptr)
    func racereadrange(addr, size uintptr)
    func racewriterange(addr, size uintptr)
    
    // memory sanitizer
    func msanread(addr, size uintptr)
    func msanwrite(addr, size uintptr)
    func msanmove(dst, src, size uintptr)
    
    // address sanitizer
    func asanread(addr, size uintptr)
    func asanwrite(addr, size uintptr)
    
    func checkptrAlignment(unsafe.Pointer, *byte, uintptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    	}
    	x := c.stackcache[order].list
    	size := c.stackcache[order].size
    	lock(&stackpool[order].item.mu)
    	for size > _StackCacheSize/2 {
    		y := x.ptr().next
    		stackpoolfree(x, order)
    		x = y
    		size -= fixedStack << order
    	}
    	unlock(&stackpool[order].item.mu)
    	c.stackcache[order].list = x
    	c.stackcache[order].size = size
    }
    
    //go:systemstack
    func stackcache_clear(c *mcache) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. src/runtime/mbarrier.go

    func reflectcallmove(typ *_type, dst, src unsafe.Pointer, size uintptr, regs *abi.RegArgs) {
    	if writeBarrier.enabled && typ != nil && typ.Pointers() && size >= goarch.PtrSize {
    		// Pass nil for the type. dst does not point to value of type typ,
    		// but rather points into one, so applying the optimization is not
    		// safe. See the comment on this function.
    		bulkBarrierPreWrite(uintptr(dst), uintptr(src), size, nil)
    	}
    	memmove(dst, src, size)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/GradleBuildModelCrossVersionSpec.groovy

            model.buildIdentifier.rootDir == rootDir
            model.rootProject.name == "root"
            model.includedBuilds.size() == 1
    
            def includedBuild = model.includedBuilds[0]
            includedBuild.buildIdentifier.rootDir == includedBuildDir
            includedBuild.rootProject.name == "includedBuild"
            includedBuild.projects.size() == 4
            includedBuild.includedBuilds.empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top