Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Get2 (0.04 sec)

  1. src/time/zoneinfo_read.go

    		//	42	off[4]
    		//	46	name[namelen]
    		//	46+namelen+xlen+fclen - next header
    		//
    		if get4(buf) != zcheader {
    			break
    		}
    		meth := get2(buf[10:])
    		size := get4(buf[24:])
    		namelen := get2(buf[28:])
    		xlen := get2(buf[30:])
    		fclen := get2(buf[32:])
    		off := get4(buf[42:])
    		zname := buf[46 : 46+namelen]
    		buf = buf[46+namelen+xlen+fclen:]
    		if string(zname) != name {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. test/chan/powser1.go

    		case it = <-dat[0]:
    			out[0] = it
    			dat[0] = nil
    		case it = <-dat[1]:
    			out[1] = it
    			dat[1] = nil
    		}
    	}
    	return out
    }
    
    // Get one rat from each of 2 demand channels
    
    func get2(in0 *dch, in1 *dch) []rat {
    	return getn([]*dch{in0, in1})
    }
    
    func copy(in *dch, out *dch) {
    	for {
    		<-out.req
    		out.dat <- get(in)
    	}
    }
    
    func repeat(dat rat, out *dch) {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  3. test/chan/powser2.go

    		case it = <-dat[0]:
    			out[0] = it
    			dat[0] = nil
    		case it = <-dat[1]:
    			out[1] = it
    			dat[1] = nil
    		}
    	}
    	return out
    }
    
    // Get one item from each of 2 demand channels
    
    func get2(in0 *dch, in1 *dch) []item {
    	return getn([]*dch{in0, in1})
    }
    
    func copy(in *dch, out *dch) {
    	for {
    		<-out.req
    		out.dat <- get(in)
    	}
    }
    
    func repeat(dat item, out *dch) {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/prog.go

    	writeMu sync.Mutex
    }
    
    // ProgCmd is a command that can be issued to a child process.
    //
    // If the interface needs to grow, we can add new commands or new versioned
    // commands like "get2".
    type ProgCmd string
    
    const (
    	cmdGet   = ProgCmd("get")
    	cmdPut   = ProgCmd("put")
    	cmdClose = ProgCmd("close")
    )
    
    // ProgRequest is the JSON-encoded message that's sent from cmd/go to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/inl_test.go

    			"(*mspan).base",
    			"(*mspan).markBitsForBase",
    			"(*mspan).markBitsForIndex",
    			"(*mspan).writeUserArenaHeapBits",
    			"(*muintptr).set",
    			"(*puintptr).set",
    			"(*wbBuf).get1",
    			"(*wbBuf).get2",
    
    			// Trace-related ones.
    			"traceLocker.ok",
    			"traceEnabled",
    		},
    		"runtime/internal/sys": {},
    		"runtime/internal/math": {
    			"MulUintptr",
    		},
    		"bytes": {
    			"(*Buffer).Bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_test.go

    	logger, ctx := ktesting.NewTestContext(t)
    	ssc, _, om, _ := newFakeStatefulSetController(ctx)
    	set1 := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	pod1 := newStatefulSetPod(set1, 0)
    	pod2 := newStatefulSetPod(set2, 0)
    	om.setsIndexer.Add(set1)
    	om.setsIndexer.Add(set2)
    
    	prev := *pod1
    	fakeResourceVersion(pod1)
    	ssc.updatePod(logger, &prev, pod1)
    	key, done := ssc.queue.Get()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ImmutableActionSetTest.groovy

            def action4 = Mock(Action)
            def set1 = ImmutableActionSet.of(action1, action2)
            def set2 = ImmutableActionSet.of(action1, action3)
    
            when:
            def set = set1.mergeFrom(set2)
            set2 = set2.add(action4)
            set = set.mergeFrom(set2)
            set.execute("value")
    
            then:
            1 * action1.execute("value")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/rearrange_function_argument_pass_test.cc

      cond_fn.set_name("f3");
      body_fn.set_name("f2");
      auto while_op =
          ops::While(s.WithOpName("while"),
                     std::initializer_list<Input>{arg0, arg1}, cond_fn, body_fn);
      auto ret2 = ops::_Retval(s.WithOpName("ret2"), while_op.output[0], 2);
      auto ret3 = ops::_Retval(s.WithOpName("ret3"), while_op.output[1], 3);
      std::unique_ptr<Graph> g(new Graph(OpRegistry::Global()));
      TF_CHECK_OK(s.ToGraph(g.get()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetCgroupStats", cgroupName, updateStats)
    	ret0, _ := ret[0].(*v1alpha1.ContainerStats)
    	ret1, _ := ret[1].(*v1alpha1.NetworkStats)
    	ret2, _ := ret[2].(error)
    	return ret0, ret1, ret2
    }
    
    // GetCgroupStats indicates an expected call of GetCgroupStats.
    func (mr *MockProviderMockRecorder) GetCgroupStats(cgroupName, updateStats any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. tests/associations_has_many_test.go

    	AssertAssociationCount(t, user, "Pets", 5, "AfterAppendSlice")
    
    	// Replace
    	pet2 := Pet{Name: "pet-has-many-replace"}
    
    	if err := DB.Model(&user2).Association("Pets").Replace(&pet2); err != nil {
    		t.Fatalf("Error happened when append pet, got %v", err)
    	}
    
    	if pet2.ID == 0 {
    		t.Fatalf("pet2's ID should be created")
    	}
    
    	user.Pets = []*Pet{&pet2}
    	CheckUser(t, user2, user)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top