Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for idea (0.22 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
    
                task jar(type: Jar) {
                    archiveBaseName = project.name
                    // TODO LJA: No idea why I have to do this
                    if (project.version != 'unspecified') {
                        archiveFileName = "\${project.name}-\${project.version}.jar"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    )
    
    // Pseudo-ops for parsing stack.
    const (
    	opLeftParen = opPseudo + iota
    	opVerticalBar
    )
    
    // maxHeight is the maximum height of a regexp parse tree.
    // It is somewhat arbitrarily chosen, but the idea is to be large enough
    // that no one will actually hit in real use but at the same time small enough
    // that recursion on the Regexp tree will not hit the 1GB Go stack limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/userguide-ides.png

    userguide-ides.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 05:56:09 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Changes in the IDE integration
    
    [[kotlin_dsl_plugins_catalogs_workaround]]
    ==== Workaround for false positive errors shown in Kotlin DSL `plugins {}` block using version catalog is not needed anymore
    
    Version catalog accessors for plugin aliases in the `plugins {}` block aren't shown as errors in IntelliJ IDEA and Android Studio Kotlin script editor anymore.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    						protocol, "dport", svcInfo.Port(),
    						"jump", markMasqChain,
    					),
    				})
    			} else if proxier.localDetector.IsImplemented() {
    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    				// bridge into the Service for you. Since that might bounce
    				// off-node, we masquerade here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    }
    
    // Timing
    
    // itoaDiv formats val/(10**dec) into buf.
    func itoaDiv(buf []byte, val uint64, dec int) []byte {
    	i := len(buf) - 1
    	idec := i - dec
    	for val >= 10 || i >= idec {
    		buf[i] = byte(val%10 + '0')
    		i--
    		if i == idec {
    			buf[i] = '.'
    			i--
    		}
    		val /= 10
    	}
    	buf[i] = byte(val + '0')
    	return buf[i:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/bufio/bufio_test.go

    			return
    		}
    	}
    }
    
    func createTestInput(n int) []byte {
    	input := make([]byte, n)
    	for i := range input {
    		// 101 and 251 are arbitrary prime numbers.
    		// The idea is to create an input sequence
    		// which doesn't repeat too frequently.
    		input[i] = byte(i % 251)
    		if i%101 == 0 {
    			input[i] ^= byte(i / 101)
    		}
    	}
    	return input
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    					"-A", string(internalTrafficChain),
    					args,
    					"-j", string(kubeMarkMasqChain))
    			} else if proxier.localDetector.IsImplemented() {
    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    				// bridge into the Service for you. Since that might bounce
    				// off-node, we masquerade here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    		gcPercentHeapGoal = c.heapMinimum
    	}
    	c.gcPercentHeapGoal.Store(gcPercentHeapGoal)
    
    	// Compute the amount of runway we want the GC to have by using our
    	// estimate of the cons/mark ratio.
    	//
    	// The idea is to take our expected scan work, and multiply it by
    	// the cons/mark ratio to determine how long it'll take to complete
    	// that scan work in terms of bytes allocated. This gives us our GC's
    	// runway.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    			proxier.natRules.Write(
    				args, "dst,dst",
    				"-j", string(kubeMarkMasqChain))
    		} else if proxier.localDetector.IsImplemented() {
    			// This masquerades off-cluster traffic to a service VIP.  The idea
    			// is that you can establish a static route for your Service range,
    			// routing to any node, and that node will bridge into the Service
    			// for you.  Since that might bounce off-node, we masquerade here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top