Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for Printer (1.06 sec)

  1. src/cmd/cgo/internal/test/callback.go

    	callbackMutex.Unlock()
    
    	// Pass the address of i because the C function was written to
    	// take a pointer.  We could pass an int if we felt like
    	// rewriting the C code.
    	C.callback(unsafe.Pointer(&i))
    
    	callbackMutex.Lock()
    	delete(callbackFuncs, i)
    	callbackMutex.Unlock()
    }
    
    //export goCallback
    func goCallback(p unsafe.Pointer) {
    	i := *(*int)(p)
    
    	callbackMutex.Lock()
    	f := callbackFuncs[i]
    	callbackMutex.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	"k8s.io/kubernetes/pkg/controller/testutil"
    	controllerutil "k8s.io/kubernetes/pkg/controller/util/node"
    	"k8s.io/kubernetes/pkg/util/node"
    	taintutils "k8s.io/kubernetes/pkg/util/taints"
    	"k8s.io/utils/pointer"
    )
    
    const (
    	testNodeMonitorGracePeriod = 40 * time.Second
    	testNodeStartupGracePeriod = 60 * time.Second
    	testNodeMonitorPeriod      = 5 * time.Second
    	testRateLimiterQPS         = float32(100000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func init() {
    }
    
    const (
    	testKubeletHostname = "127.0.0.1"
    	testKubeletHostIP   = "127.0.0.1"
    	testKubeletHostIPv6 = "::1"
    
    	// TODO(harry) any global place for these two?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Bulk process is started. */
        public static final String SUCCESS_bulk_process_started = "{success.bulk_process_started}";
    
        /** The key of the message: Printed thread dump to log file. */
        public static final String SUCCESS_print_thread_dump = "{success.print_thread_dump}";
    
        /** The key of the message: Installing {0} plugin. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	certs, err := ParseCertificates(der)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Check that parsed non-standard attributes are printed.
    	rdns := pkix.Name{
    		Locality: []string{"Gophertown"},
    		ExtraNames: []pkix.AttributeTypeAndValue{
    			{Type: asn1.ObjectIdentifier([]int{1, 2, 3, 4, 5}), Value: "golang.org"}},
    	}.ToRDNSequence()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    			return s[i] < t[i]
    		}
    	}
    	return false // they are equal
    }
    
    // packageCache is a lookup cache for LoadImport,
    // so that if we look up a package multiple times
    // we return the same pointer each time.
    var packageCache = map[string]*Package{}
    
    // dirToImportPath returns the pseudo-import path we use for a package
    // outside the Go path. It begins with _/ and then contains the full path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    // golang.org/issue/4859
    func TestQueryRowNilScanDest(t *testing.T) {
    	db := newTestDB(t, "people")
    	defer closeDB(t, db)
    	var name *string // nil pointer
    	err := db.QueryRow("SELECT|people|name|").Scan(name)
    	want := `sql: Scan error on column index 0, name "name": destination pointer is nil`
    	if err == nil || err.Error() != want {
    		t.Errorf("error = %q; want %q", err.Error(), want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. cmd/bucket-replication.go

    			}
    		case <-p.mrfWorkerKillCh:
    			return
    		}
    	}
    }
    
    // AddWorker adds a replication worker to the pool.
    // An optional pointer to a tracker that will be atomically
    // incremented when operations are running can be provided.
    func (p *ReplicationPool) AddWorker(input <-chan ReplicationWorkerOperation, opTracker *int32) {
    	for {
    		select {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    		{NewRevisionDeletePodFailure, simpleSetFn},
    		{RecreatesPVCForPendingPod, simpleSetFn},
    	}
    
    	for _, testCase := range testCases {
    		fnName := runtime.FuncForPC(reflect.ValueOf(testCase.fn).Pointer()).Name()
    		if i := strings.LastIndex(fnName, "."); i != -1 {
    			fnName = fnName[i+1:]
    		}
    		testObj := testCase.obj
    		testFn := testCase.fn
    		runTestOverPVCRetentionPolicies(
    			t,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	VPSLLD   $12, BB2, CC3; VPSRLD $20, BB2, BB2; VPXOR CC3, BB2, BB2
    	VPSLLD   $12, BB3, CC3; VPSRLD $20, BB3, BB3; VPXOR CC3, BB3, BB3
    	VMOVDQA  tmpStoreAVX2, CC3
    
    	SUBQ $16, oup                  // Adjust the pointer
    	MOVQ $9, itr1
    	JMP  sealAVX2InternalLoopStart
    
    sealAVX2MainLoop:
    	// Load state, increment counter blocks, store the incremented counters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top