Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 115 for appengine (0.18 sec)

  1. src/database/sql/convert.go

    	return fmt.Sprintf("%v", src)
    }
    
    func asBytes(buf []byte, rv reflect.Value) (b []byte, ok bool) {
    	switch rv.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return strconv.AppendInt(buf, rv.Int(), 10), true
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    		return strconv.AppendUint(buf, rv.Uint(), 10), true
    	case reflect.Float32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        assertThat(read).isEqualTo(bf);
        assertThat(read.expectedFpp()).isGreaterThan(0);
      }
    
      /**
       * This test will fail whenever someone updates/reorders the BloomFilterStrategies constants. Only
       * appending a new constant is allowed.
       */
      public void testBloomFilterStrategies() {
        assertThat(BloomFilterStrategies.values()).hasLength(2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - cloud.google.com/go/analytics: v0.19.0
    - cloud.google.com/go/apigateway: v1.5.0
    - cloud.google.com/go/apigeeconnect: v1.5.0
    - cloud.google.com/go/apigeeregistry: v0.6.0
    - cloud.google.com/go/appengine: v1.7.1
    - cloud.google.com/go/area120: v0.7.1
    - cloud.google.com/go/artifactregistry: v1.13.0
    - cloud.google.com/go/asset: v1.13.0
    - cloud.google.com/go/assuredworkloads: v1.10.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/assign.go

    	nodes = append(nodes, nifneg)
    
    	// s := l1
    	s := typecheck.TempAt(base.Pos, ir.CurFunc, l1.Type())
    	nodes = append(nodes, ir.NewAssignStmt(base.Pos, s, l1))
    
    	// if l2 != 0 {
    	// Avoid work if we're not appending anything. But more importantly,
    	// avoid allowing hp to be a past-the-end pointer when clearing. See issue 67255.
    	nifnz := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.ONE, l2, ir.NewInt(base.Pos, 0)), nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    // should have an inline-adjusted position, whereas the ODCLFUNC and
    // ONAME must not.
    //
    // outerfn is the enclosing function, if any. The returned function is
    // appending to pkg.Funcs.
    //
    // why is the reason we're generating this Func. It can be OCLOSURE
    // (for a normal function literal) or OGO or ODEFER (for wrapping a
    // call expression that has parameters or results).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	defaultServiceType corev1.ServiceType
    
    	// disableRouteGeneration, if set, will make it so the controller ignores this class.
    	disableRouteGeneration bool
    
    	// disableNameSuffix, if set, will avoid appending -<class> to names
    	disableNameSuffix bool
    
    	// addressType is the default address type to report
    	addressType gateway.AddressType
    }
    
    var classInfos = getClassInfos()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	if w.handlerDone.Load() && !trailers && !hasTE && bodyAllowedForStatus(w.status) && !header.has("Content-Length") && (!isHEAD || len(p) > 0) {
    		w.contentLength = int64(len(p))
    		setHeader.contentLength = strconv.AppendInt(cw.res.clenBuf[:0], int64(len(p)), 10)
    	}
    
    	// If this was an HTTP/1.0 request with keep-alive and we sent a
    	// Content-Length back, we can make this a keep-alive response ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. cmd/storage-datatypes_gen.go

    		return
    	}
    	if z.Data == nil { // allownil: if nil
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendBytes(o, z.Data)
    	}
    	o = msgp.AppendInt(o, z.NumVersions)
    	o = msgp.AppendTime(o, z.SuccessorModTime)
    	o = msgp.AppendBool(o, z.Fresh)
    	o = msgp.AppendInt(o, z.Idx)
    	if z.Checksum == nil { // allownil: if nil
    		o = msgp.AppendNil(o)
    	} else {
    		o = msgp.AppendBytes(o, z.Checksum)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Another solution to publish multiple alternatives for the same library is the usage of a versioning pattern as done by the popular Guava library.
    Here, each new version is published twice by appending the classifier to the version instead of the jar artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. src/crypto/x509/verify.go

    	}
    	comparisonCount := 0
    
    	if certType == intermediateCertificate || certType == rootCertificate {
    		if len(currentChain) == 0 {
    			return errors.New("x509: internal error: empty chain when appending CA cert")
    		}
    	}
    
    	if (certType == intermediateCertificate || certType == rootCertificate) &&
    		c.hasNameConstraints() {
    		toCheck := []*Certificate{}
    		for _, c := range currentChain {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top