Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for InterfaceA (2.36 sec)

  1. src/database/sql/sql_test.go

    		// fakeConn implements the optional Execer interface,
    		// so arguably this is the correct behavior. But
    		// maybe I should flesh out the fakeConn.Exec
    		// implementation so this properly fails.
    		// t.Errorf("expected error inserting nil name with Exec")
    	}
    
    	paramtype := reflect.TypeOf(spec.rows[0].nullParam)
    	bindVal := reflect.New(paramtype).Interface()
    
    	for i := 0; i < 5; i++ {
    		id := i + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    String, boolean); public boolean hasMoreTokens(); private String internalNextToken(); public String nextToken(); private boolean isDelim(String); } org/codehaus/plexus/util/cli/StreamConsumer.class package org.codehaus.plexus.util.cli; public abstract interface StreamConsumer { public abstract void consumeLine(String); } org/codehaus/plexus/util/cli/StreamFeeder.class package org.codehaus.plexus.util.cli; public synchronized class StreamFeeder extends Thread { private java.io.InputStream input; private...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	name := obj.Name
    	ncs := interface{}("<none>")
    	queues := interface{}("<none>")
    	handSize := interface{}("<none>")
    	queueLengthLimit := interface{}("<none>")
    	if obj.Spec.Limited != nil {
    		ncs = obj.Spec.Limited.NominalConcurrencyShares
    		if qc := obj.Spec.Limited.LimitResponse.Queuing; qc != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      mount --bind "${mountpoint}" "${bindpoint}"
      chmod a+w "${bindpoint}"
    }
    
    
    # Mounts, bindmounts, or symlinks depending on the interface and format
    # of the incoming device
    function mount-ext(){
      local ssd="${1}"
      local devicenum="${2}"
      local interface="${3}"
      local format="${4}"
    
    
      if [[ -z "${devicenum}" ]]; then
        echo "Failed to get the local disk number for device ${ssd}" >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    	err     error
    }
    
    func (fake *fakeIPSetVersioner) GetVersion() (string, error) {
    	return fake.version, fake.err
    }
    
    func NewFakeProxier(ctx context.Context, ipt utiliptables.Interface, ipvs utilipvs.Interface, ipset utilipset.Interface, nodeIPs []string, excludeCIDRs []*net.IPNet, ipFamily v1.IPFamily) *Proxier {
    
    	netlinkHandle := netlinktest.NewFakeNetlinkHandle(ipFamily == v1.IPv6Protocol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

          for ((i=1; i<=ssdopts[0]; i++)); do
            local_ssds+=("--local-ssd=interface=${ssdopts[1]}")
          done
        done
      fi
    
      if [[ -n ${NODE_LOCAL_SSDS+x} ]]; then
        # The NODE_LOCAL_SSDS check below fixes issue #49171
        for ((i=1; i<=NODE_LOCAL_SSDS; i++)); do
          local_ssds+=('--local-ssd=interface=SCSI')
        done
      fi
    
      local address=""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Phi (Const32 [c]) (Const32 [c])) => (Const32 [c])
    (Phi (Const64 [c]) (Const64 [c])) => (Const64 [c])
    
    // slice and interface comparisons
    // The frontend ensures that we can only compare against nil,
    // so we need only compare the first word (interface type or slice ptr).
    (EqInter x y)  => (EqPtr  (ITab x) (ITab y))
    (NeqInter x y) => (NeqPtr (ITab x) (ITab y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    		pub = block.Bytes
    	}
    	key, err := x509.ParsePKCS1PublicKey(pub)
    	if err != nil {
    		return nil, err
    	}
    	return key, nil
    }
    
    // getRawDataer provides an interface for getting raw FS files.
    type getRawDataer interface {
    	GetRawData(ctx context.Context, volume, file string, fn func(r io.Reader, host string, disk string, filename string, info StatInfo) error) error
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if prefixOnly {
    		psave = &save
    	}
    	for len(ps.inner) > 0 {
    		ps.printOneInner(psave)
    	}
    	return save
    }
    
    // innerPrinter is an interface for types that can print themselves as
    // inner types.
    type innerPrinter interface {
    	printInner(*printState)
    }
    
    // Print the most recent inner type.  If save is not nil, only print
    // prefixes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one_test.go

    	objs := append([]runtime.Object{
    		&v1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: ""}}}, nodes...)
    	client := clientsetfake.NewSimpleClientset(objs...)
    	broadcaster := events.NewBroadcaster(&events.EventSinkImpl{Interface: client.EventsV1()})
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	informerFactory := informers.NewSharedInformerFactory(client, 0)
    	sched, err := New(
    		ctx,
    		client,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top