Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for printsp (0.34 sec)

  1. tensorflow/c/c_api.h

    // it will be stopped and joined.
    TF_CAPI_EXPORT extern void TF_DeleteServer(TF_Server* server);
    
    // Register a listener method that processes printed messages.
    //
    // If any listeners are registered, the print operator will call all listeners
    // with the printed messages and immediately return without writing to the
    // logs.
    TF_CAPI_EXPORT extern void TF_RegisterLogListener(
        void (*listener)(const char*));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //	// previous hash state. Read always reads the current state.
    //	b := make([]byte, 20)
    //	for i := 0; i < 2; i++ {
    //	    io.WriteString(hash, "Hello, world.")
    //	    hash.Read(b)
    //	    fmt.Println(hex.EncodeToString(b))
    //	}
    //	// Output:
    //	// 2ae01472317d1935a84797ec1983ae243fc6aa28
    //	// 2ae01472317d1935a84797ec1983ae243fc6aa28
    //
    // For hashing larger byte slices, or byte streams such as those read from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            .isTrue();
        if (!failures.isEmpty()) {
          StringWriter message = new StringWriter();
          PrintWriter writer = new PrintWriter(message);
          writer.println("Expected no failures, but found:");
          for (AssertionError failure : failures) {
            failure.printStackTrace(writer);
          }
          failures.clear();
          assertWithMessage(message.toString()).fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    }
    
    func (list *mSpanList) isEmpty() bool {
    	return list.first == nil
    }
    
    func (list *mSpanList) insert(span *mspan) {
    	if span.next != nil || span.prev != nil || span.list != nil {
    		println("runtime: failed mSpanList.insert", span, span.next, span.prev, span.list)
    		throw("mSpanList.insert")
    	}
    	span.next = list.first
    	if list.first != nil {
    		// The list contains at least one span; link it in.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

            .isTrue();
        if (!failures.isEmpty()) {
          StringWriter message = new StringWriter();
          PrintWriter writer = new PrintWriter(message);
          writer.println("Expected no failures, but found:");
          for (AssertionError failure : failures) {
            failure.printStackTrace(writer);
          }
          failures.clear();
          assertWithMessage(message.toString()).fail();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    			goSumDiff := diff.Diff("current/go.sum", currentGoSum, "tidy/go.sum", tidyGoSum)
    
    			if len(goModDiff) > 0 {
    				fmt.Println(string(goModDiff))
    				base.SetExitStatus(1)
    			}
    			if len(goSumDiff) > 0 {
    				fmt.Println(string(goSumDiff))
    				base.SetExitStatus(1)
    			}
    			base.Exit()
    		}
    
    		if !ExplicitWriteGoMod {
    			modfetch.TrimGoSum(keep)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager_test.go

    					// Such as: `throw("Concurrent map iteration and map writing")`.
    					// When this test ends quietly, no data race error occurs.
    					// Otherwise, the test process exits automatically and prints all goroutine call stacks.
    					test.testfunc(mimpl)
    				}
    			}()
    			wg.Wait()
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server_test.go

    			ss, err := newTestStreamingServer(0)
    			require.NoError(t, err)
    			defer ss.testHTTPServer.Close()
    			fw := newServerTestWithDebug(true, ss)
    			defer fw.testHTTPServer.Close()
    			fmt.Println(desc)
    
    			podNamespace := "other"
    			podName := "foo"
    			expectedPodName := getPodName(podName, podNamespace)
    			expectedContainerName := "baz"
    			expectedCommand := "ls -a"
    			expectedStdin := "stdin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-font-speedo",
    				"application/x-font-sunos-news",
    				"application/x-font-ttf",
    				"application/x-font-type1",
    				"application/x-font-adobe-metric",
    				"application/x-font-printer-metric",
    				"application/x-font-vfont",
    				"application/x-foxmail",
    				"application/x-futuresplash",
    				"application/x-gnucash",
    				"application/x-gnumeric",
    				"application/x-gtar",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			return nil, fmt.Errorf("the server could not properly serve the CR columns")
    		}
    		table, err := tableconvertor.New(columns)
    		if err != nil {
    			klog.V(2).Infof("The CRD for %v has an invalid printer specification, falling back to default printing: %v", kind, err)
    		}
    
    		listKind := schema.GroupVersionKind{Group: crd.Spec.Group, Version: v.Name, Kind: crd.Status.AcceptedNames.ListKind}
    		if len(listKind.Kind) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top