Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 310 for extr6 (0.21 sec)

  1. src/runtime/coro.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    // A coro represents extra concurrency without extra parallelism,
    // as would be needed for a coroutine implementation.
    // The coro does not represent a specific coroutine, only the ability
    // to do coroutine-style control transfers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. build/release-images.sh

    source "${KUBE_ROOT}/build/lib/release.sh"
    
    CMD_TARGETS="${KUBE_SERVER_IMAGE_TARGETS[*]}"
    if [[ "${KUBE_BUILD_CONFORMANCE}" =~ [yY] ]]; then
        CMD_TARGETS="${CMD_TARGETS} ${KUBE_CONFORMANCE_IMAGE_TARGETS[*]}"
    fi
    # include extra WHAT if specified so you can build docker images + binaries
    # in one call with a single pass of syncing to the container + generating code
    if [[ -n "${KUBE_EXTRA_WHAT:-}" ]]; then
        CMD_TARGETS="${CMD_TARGETS} ${KUBE_EXTRA_WHAT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/siginfo_linux.go

    //
    // NOTE fields are exported to be used by TestSiginfoChildLayout.
    type SiginfoChild struct {
    	Signo       int32
    	siErrnoCode                // Two int32 fields, swapped on MIPS.
    	_           [is64bit]int32 // Extra padding for 64-bit hosts only.
    
    	// End of common part. Beginning of signal-specific part.
    
    	Pid    int32
    	Uid    uint32
    	Status int32
    
    	// Pad to 128 bytes.
    	_ [128 - (6+is64bit)*4]byte
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

        }
    
        def module(String module, boolean external) {
            String extra = external ? "external" : "internal"
            return Mock(Module) {
                getImplementationClasspath() >> {
                    Mock(ClassPath) {
                        getAsURLs() >> { [new URL("file://${module}-${extra}.jar")] }
                        getAsFiles() >> { [new File("${module}-${extra}.jar")] }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/deltatest.go

    		// Delta is configured to build only the request resources. Make sense we didn't build anything extra
    		if !wantChanged.SupersetOf(gotChanged) {
    			log.Errorf("%s: TEST for node:%s unexpected resources: %v %v", v3.GetShortType(w.TypeUrl), con.proxy.ID, details, wantChanged.Difference(gotChanged))
    		}
    		// Still make sure we didn't delete anything extra
    		if len(extraDeletes) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/internal/trace/trace_test.go

    			}
    			t.Fatal(err)
    		}
    		tb := traceBuf.Bytes()
    
    		// Test the trace and the parser.
    		testReader(t, bytes.NewReader(tb), testtrace.ExpectSuccess())
    
    		// Run some extra validation.
    		if !t.Failed() && extra != nil {
    			extra(t, tb, errBuf.Bytes(), stress)
    		}
    
    		// Dump some more information on failure.
    		if t.Failed() && onBuilder {
    			// Dump directly to the test log on the builder, since this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/internal/trace/event.go

    	case go122.EvUserTaskBegin:
    		parentID = TaskID(e.base.args[1])
    		typ = e.table.strings.mustGet(stringID(e.base.args[2]))
    	case go122.EvUserTaskEnd:
    		parentID = TaskID(e.base.extra(version.Go122)[0])
    		typ = e.table.getExtraString(extraStringID(e.base.extra(version.Go122)[1]))
    	default:
    		panic(fmt.Sprintf("internal error: unexpected event type for Task kind: %s", go122.EventString(e.base.typ)))
    	}
    	return Task{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/volume_manager.go

    	// volumes.
    	GetPossiblyMountedVolumesForPod(podName types.UniquePodName) container.VolumeMap
    
    	// GetExtraSupplementalGroupsForPod returns a list of the extra
    	// supplemental groups for the Pod. These extra supplemental groups come
    	// from annotations on persistent volumes that the pod depends on.
    	GetExtraSupplementalGroupsForPod(pod *v1.Pod) []int64
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types.go

    	// +listType=atomic
    	Groups []string `json:"groups,omitempty" protobuf:"bytes,4,rep,name=groups"`
    	// Extra corresponds to the user.Info.GetExtra() method from the authenticator.  Since that is input to the authorizer
    	// it needs a reflection here.
    	// +optional
    	Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,5,rep,name=extra"`
    	// UID information about the requesting user.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/internal/trace/raw/writer.go

    	"internal/trace/version"
    )
    
    // Writer emits the wire format of a trace.
    //
    // It may not produce a byte-for-byte compatible trace from what is
    // produced by the runtime, because it may be missing extra padding
    // in the LEB128 encoding that the runtime adds but isn't necessary
    // when you know the data up-front.
    type Writer struct {
    	w     io.Writer
    	buf   []byte
    	v     version.Version
    	specs []event.Spec
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top