Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for Printer (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/work/exec.go

    	// (The unsafeptr check does not write any facts for use by
    	// later vet runs, nor does unreachable.)
    	if a.Package.Goroot && !VetExplicit && VetTool == "" {
    		// Turn off -unsafeptr checks.
    		// There's too much unsafe.Pointer code
    		// that vet doesn't like in low-level packages
    		// like runtime, sync, and reflect.
    		// Note that $GOROOT/src/buildall.bash
    		// does the same
    		// and should be updated if these flags are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				// Note that errors, like the below, do print the type name, but it changes each time a CRD is updated.
    				// Type name printed in the below error will be of the form "<uuid>.nestedInList.@idx".
    
    				// Developers may not cast the type of variables as a string:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      return llvm::StringRef(*saved_strings_.insert(s).first);
    }
    
    // Extracts a TensorProto for a Const op from a GraphDef, given an op_name.
    // Returns nullptr on not found or other mismatch.
    // This returns a pointer to the actual node within the graph_def so as to
    // avoid expensive copies.
    const TensorProto* ExtractConstTensorFromGraph(const GraphDef& graph_def,
                                                   const std::string& op_name) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top