Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for flts (0.07 sec)

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

                            println "files: " + artifacts.collect { it.file.name }
                        }
                    }
                }
    
                // NOTE: This is named "Red" so that the status message fits on one line
                abstract class Red extends Multiplier {
                    Red() {
                        super("red")
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/net/http/http.go

    // TODO(bradfitz): move common stuff here. The other files have accumulated
    // generic http stuff in random places.
    
    // contextKey is a value for use with context.WithValue. It's used as
    // a pointer so it fits in an interface{} without allocation.
    type contextKey struct {
    	name string
    }
    
    func (k *contextKey) String() string { return "net/http context value " + k.name }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/types.go

    	ServiceAccountName string
    
    	// NodeName is a request to schedule this pod onto a specific node.  If it is non-empty,
    	// the scheduler simply schedules this pod onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string
    	// Specifies the hostname of the Pod.
    	// If not specified, the pod's hostname will be set to a system-defined value.
    	// +optional
    	Hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  4. src/strconv/itoa.go

    				// Avoid using r = a%b in addition to q = a/b
    				// since 64bit division and modulo operations
    				// are calculated by runtime functions on 32bit machines.
    				q := u / 1e9
    				us := uint(u - q*1e9) // u % 1e9 fits into a uint
    				for j := 4; j > 0; j-- {
    					is := us % 100 * 2
    					us /= 100
    					i -= 2
    					a[i+1] = smallsString[is+1]
    					a[i+0] = smallsString[is+0]
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/build-goboring.sh

    	test %rcx,%rcx
    	jne 1f
    
    	# save divisor
    	movq %rdx, %r8
    
    	# reduce top 64 bits mod divisor
    	movq %rsi, %rax
    	xorl %edx, %edx
    	divq %r8
    
    	# reduce full 128-bit mod divisor
    	# quotient fits in 64 bits because top 64 bits have been reduced < divisor.
    	# (even though we only care about the remainder, divq also computes
    	# the quotient, and it will trap if the quotient is too large.)
    	movq %rdi, %rax
    	divq %r8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

            TypeName entryChildType = TypeUtils.typeName(entry.type);
            CodeBlock matchExpr = entry.kind == RECEIVER_AS_CLASS ?
                CodeBlock.of("$L.equals($T.class)", argExpr, entryChildType) :
                // Vararg fits here, too:
                CodeBlock.of("$1L == null || $1L instanceof $2T", argExpr, entryChildType.box());
            result.beginControlFlow("if ($L)", matchExpr);
            boolean shouldPopParameter = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. docs/hotfixes.md

    ## Creating a hotfix branch
    
    Customers in MinIO are allowed LTS on any release they choose to standardize. Production setups seldom change and require maintenance. Hotfix branches are such maintenance branches that allow customers to operate a production cluster without drastic changes to their deployment.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

         */
        String getStrictVersion();
    
        /**
         * Returns the list of versions that this module rejects  (which may be exact versions, or ranges, anything that fits into a version string).
         *
         * @return the list of rejected versions
         */
        List<String> getRejectedVersions();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/visit.go

    //			return cond(x) || ir.DoChildren(x, do)
    //		}
    //		return do(n)
    //	}
    //
    // Visit and Any are presented above as examples of how to use
    // DoChildren effectively, but of course, usage that fits within the
    // simplifications captured by Visit or Any will be best served
    // by directly calling the ones provided by this package.
    func DoChildren(n Node, do func(Node) bool) bool {
    	if n == nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

      // +optional
      optional string serviceAccount = 9;
    
      // NodeName is a request to schedule this pod onto a specific node. If it is non-empty,
      // the scheduler simply schedules this pod onto that node, assuming that it fits resource
      // requirements.
      // +optional
      optional string nodeName = 10;
    
      // Host networking requested for this pod. Use the host's network namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top