Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for locals (0.21 sec)

  1. src/runtime/proc.go

    					// Running the timers may have
    					// made an arbitrary number of G's
    					// ready and added them to this P's
    					// local run queue. That invalidates
    					// the assumption of runqsteal
    					// that it always has room to add
    					// stolen G's. So check now if there
    					// is a local G to run.
    					if gp, inheritTime := runqget(pp); gp != nil {
    						return gp, inheritTime, now, pollUntil, ranTimer
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // Usage:
    //
    //	go telemetry [off|local|on]
    //
    // Telemetry is used to manage Go telemetry data and settings.
    //
    // Telemetry can be in one of three modes: off, local, or on.
    //
    // When telemetry is in local mode, counter data is written to the local file
    // system, but will not be uploaded to remote servers.
    //
    // When telemetry is off, local counter data is neither collected nor uploaded.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                the project. Note that in case of a multi-module build, only the default goal of the top-level
                project is relevant, i.e. the default goals of child modules are ignored. Since Maven 3,
                multiple goals/phases can be separated by whitespace.</description>
              <type>String</type>
            </field>
            <field>
              <name>resources</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_orphaned_runtime_pods_total counter
    				kubelet_orphaned_runtime_pods_total 1
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

        targetPort: 443
      - name: http2-tls-origination
        number: 8882
        protocol: http2
        targetPort: 443`,
    			"external."+t.Apps.External.Namespace.Name()+".svc.cluster.local",
    			"external."+t.Apps.External.Namespace.Name()+".svc.cluster.local",
    		),
    		children: []TrafficCall{},
    	}
    	for _, c := range t.Apps.A {
    		for _, e := range expects {
    			c := c
    			e := e
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=23
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go"
    String id=24
    	data="runtime.(*traceAdvancerState).start.func1"
    String id=25
    	data="runtime.gcAssistAlloc"
    String id=26
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcmark.go"
    String id=27
    	data="runtime.deductAssistCredit"
    String id=28
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/malloc.go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  7. src/debug/elf/elf.go

    	R_RISCV_SUB6          R_RISCV = 52 /* Local label subtraction */
    	R_RISCV_SET6          R_RISCV = 53 /* Local label subtraction */
    	R_RISCV_SET8          R_RISCV = 54 /* Local label subtraction */
    	R_RISCV_SET16         R_RISCV = 55 /* Local label subtraction */
    	R_RISCV_SET32         R_RISCV = 56 /* Local label subtraction */
    	R_RISCV_32_PCREL      R_RISCV = 57 /* 32-bit PC relative */
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Decompose stack operations into local variable operations. Needs "
               "static shapes.";
      let constructor = "TF::CreateStackOpsDecompositionPass()";
      let description = [{
        A pass that converts stack operations to tensor operations and read/assign
        ops on local variables. A later resource lifting pass can further remove the
        local variables.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_test.go

    				Consecutive_5Xx:          &wrappers.UInt32Value{Value: 0},
    				EnforcingConsecutive_5Xx: &wrappers.UInt32Value{Value: 0},
    				EnforcingSuccessRate:     &wrappers.UInt32Value{Value: 0},
    			},
    		},
    		{
    			"Local origin errors is enabled",
    			&networking.OutlierDetection{
    				SplitExternalLocalOriginErrors: true,
    				ConsecutiveLocalOriginFailures: &wrappers.UInt32Value{Value: 10},
    			},
    			&cluster.OutlierDetection{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/gateway_test.go

    						Service: "foo/example.local",
    						Port:    1234,
    					},
    				},
    			})
    
    			cg := NewConfigGenTest(t, TestOptions{
    				Configs:    tt.configs,
    				MeshConfig: mc,
    			})
    			cg.PushContext().ServiceIndex.HostnameAndNamespace = map[host.Name]map[string]*pilot_model.Service{
    				"example.local": {
    					"foo": &pilot_model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top