Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for capmem (0.51 sec)

  1. cmd/metrics-v2.go

    				return
    			}
    		}
    		if closer, ok := enc.(expfmt.Closer); ok {
    			closer.Close()
    		}
    	})
    }
    
    func toSnake(camel string) (snake string) {
    	var b strings.Builder
    	l := len(camel)
    	for i, v := range camel {
    		// A is 65, a is 97
    		if v >= 'a' {
    			b.WriteRune(v)
    			continue
    		}
    		// v is capital letter here
    		// disregard first letter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"call_me_hand":                         "\U0001f919",
    	"calling":                              "\U0001f4f2",
    	"cambodia":                             "\U0001f1f0\U0001f1ed",
    	"camel":                                "\U0001f42b",
    	"camera":                               "\U0001f4f7",
    	"camera_flash":                         "\U0001f4f8",
    	"cameroon":                             "\U0001f1e8\U0001f1f2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	dc.db.numOpen--
    	dc.db.maybeOpenNewConnections()
    	dc.db.mu.Unlock()
    
    	dc.db.numClosed.Add(1)
    	return err
    }
    
    // driverStmt associates a driver.Stmt with the
    // *driverConn from which it came, so the driverConn's lock can be
    // held during calls.
    type driverStmt struct {
    	sync.Locker // the *driverConn
    	si          driver.Stmt
    	closed      bool
    	closeErr    error // return value of previous Close call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int32",
              "type": "integer"
            },
            "started": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

    <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	}
    	return r
    }
    
    // Mode flags for loadImport and download (in get.go).
    const (
    	// ResolveImport means that loadImport should do import path expansion.
    	// That is, ResolveImport means that the import path came from
    	// a source file and has not been expanded yet to account for
    	// vendoring or possible module adjustment.
    	// Every import path should be loaded initially with ResolveImport,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    			destIP:   "5.6.7.8",
    			destPort: 80,
    
    			// The short-circuit rule is supposed to make this behave the same
    			// way it would if the packet actually went out to the LB and then
    			// came back into the cluster. So it gets routed to all endpoints,
    			// not just local ones. In reality, if the packet actually left
    			// the cluster, it would have to get masqueraded, but since we can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// that has profiling enabled.
    	gp := getg()
    	gp.m.locks++
    
    	// Stop profiler on this thread so that it is safe to lock prof.
    	// if a profiling signal came in while we had prof locked,
    	// it would deadlock.
    	setThreadCPUProfiler(0)
    
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		osyield()
    	}
    	if prof.hz.Load() != hz {
    		setProcessCPUProfiler(hz)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    // an interface requires dereferencing the itab word, the misinterpretation will try to
    // deference Inner.P1, causing a crash during garbage collection.
    //
    // This came up in a real program in issue 7725.
    
    type Outer struct {
    	*Inner
    	R io.Reader
    }
    
    type Inner struct {
    	X  *Outer
    	P1 uintptr
    	P2 uintptr
    }
    
    func (pi *Inner) M() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top