Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 149 for table_1 (0.1 sec)

  1. pkg/scheduler/schedule_one_test.go

    	eventBroadcaster := events.NewBroadcaster(&events.EventSinkImpl{Interface: client.EventsV1()})
    	errS := errors.New("scheduler")
    	errB := errors.New("binder")
    	preBindErr := errors.New("on PreBind")
    
    	table := []struct {
    		name                string
    		injectBindError     error
    		sendPod             *v1.Pod
    		registerPluginFuncs []tf.RegisterPluginFunc
    		expectErrorPod      *v1.Pod
    		expectForgetPod     *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSet.java

        }
      }
    
      // We use power-of-2 tables, and this is the highest int that's a power of 2
      static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.7;
    
      // If the set has this many elements, it will "max out" the table size
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	// function.
    
    	// pcdata contains the offset into moduledata.pctab for the start of
    	// that index's table. e.g.,
    	// &moduledata.pctab[_func.pcdata[_PCDATA_UnsafePoint]] is the start of
    	// the unsafe point table.
    	//
    	// An offset of 0 indicates that there is no table.
    	//
    	// pcdata [npcdata]uint32
    
    	// funcdata contains the offset past moduledata.gofunc which contains a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. src/internal/reflectlite/value.go

    	// like r.Read for some receiver r. The typ+val+flag bits describe
    	// the receiver r, but the flag's Kind bits say Func (methods are
    	// functions), and the top bits of the flag give the method number
    	// in r's type's method table.
    }
    
    type flag uintptr
    
    const (
    	flagKindWidth        = 5 // there are 27 kinds
    	flagKindMask    flag = 1<<flagKindWidth - 1
    	flagStickyRO    flag = 1 << 5
    	flagEmbedRO     flag = 1 << 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    The following table lists the features that are sensitive to the Gradle version being used.
    
    .Gradle version compatibility
    [%header%autowidth,compact]
    |===
    | Feature | Minimum Version | Description
    
    | Inspecting executed tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. pkg/xds/server.go

    	// peerAddr is the address of the client, from network layer.
    	peerAddr string
    
    	// Time of connection, for debugging
    	connectedAt time.Time
    
    	// conID is the connection conID, used as a key in the connection table.
    	// Currently based on the node name and a counter.
    	conID string
    
    	// Sending on this channel results in a push.
    	pushChannel chan any
    
    	// Both ADS and SDS streams implement this interface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    	FuncInfoSym   *LSym
    	WasmImportSym *LSym
    	WasmImport    *WasmImport
    
    	sehUnwindInfoSym *LSym
    }
    
    // JumpTable represents a table used for implementing multi-way
    // computed branching, used typically for implementing switches.
    // Sym is the table itself, and Targets is a list of target
    // instructions to go to for the computed branch index.
    type JumpTable struct {
    	Sym     *LSym
    	Targets []*Prog
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		Spec:       example.PodSpec{NodeName: "machine"},
    	}
    
    	testContext := genericapirequest.WithNamespace(genericapirequest.NewContext(), "test")
    	noNamespaceContext := genericapirequest.NewContext()
    
    	table := map[string]struct {
    		in      *example.PodList
    		m       storage.SelectionPredicate
    		out     runtime.Object
    		context context.Context
    	}{
    		"notFound": {
    			in:  nil,
    			m:   matchEverything(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. pkg/volume/iscsi/iscsi.go

    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    		// The volume must have been mounted in MountDevice with -o context.
    		// TODO: extract from mount table in GetAttributes() to be sure?
    		b.mountedWithSELinuxContext = mounterArgs.SELinuxLabel != ""
    	}
    	return err
    }
    
    type iscsiDiskUnmounter struct {
    	*iscsiDisk
    	mounter    mount.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    		frame.lr = 0
    	} else if flag&abi.FuncFlagSPWrite != 0 && (!innermost || u.flags&(unwindPrintErrors|unwindSilentErrors) != 0) {
    		// The function we are in does a write to SP that we don't know
    		// how to encode in the spdelta table. Examples include context
    		// switch routines like runtime.gogo but also any code that switches
    		// to the g0 stack to run host C code.
    		// We can't reliably unwind the SP (we might not even be on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top