Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,923 for Fits (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/crypto/internal/boring/build-goboring.sh

    __umodti3:
    	# specialized to u128 % u64, so verify that
    	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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. istioctl/pkg/dashboard/dashboard.go

    				}
    
    				if len(pl.Items) < 1 {
    					return errors.New("no pods found")
    				}
    
    				if len(pl.Items) > 1 {
    					log.Warnf("more than 1 pods fits selector: %s; will use pod: %s", labelSelector, pl.Items[0].Name)
    				}
    
    				// only use the first pod in the list
    				podName = pl.Items[0].Name
    				ns = pl.Items[0].Namespace
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. src/fmt/format.go

    	if f.widPresent && f.wid > width && f.minus {
    		f.writePadding(f.wid - width)
    	}
    }
    
    // fmtSx formats a string as a hexadecimal encoding of its bytes.
    func (f *fmt) fmtSx(s, digits string) {
    	f.fmtSbx(s, nil, digits)
    }
    
    // fmtBx formats a byte slice as a hexadecimal encoding of its bytes.
    func (f *fmt) fmtBx(b []byte, digits string) {
    	f.fmtSbx("", b, digits)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. 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)
  8. src/strconv/atof.go

    overflow:
    	// ±Inf
    	mant = 0
    	exp = 1<<flt.expbits - 1 + flt.bias
    	overflow = true
    
    out:
    	// Assemble bits.
    	bits := mant & (uint64(1)<<flt.mantbits - 1)
    	bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
    	if d.neg {
    		bits |= 1 << flt.mantbits << flt.expbits
    	}
    	return bits, overflow
    }
    
    // Exact powers of 10.
    var float64pow10 = []float64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K 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. 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)
Back to top