Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 193 for light (0.36 sec)

  1. src/syscall/syscall_windows.go

    	// a win32finddata1, and then copy the results out.
    	// There is no loss of expressivity here, because the final
    	// uint16, if it is used, is supposed to be a NUL, and Go doesn't need that.
    	// For Go 1.1, we might avoid the allocation of win32finddata1 here
    	// by adding a final Bug [2]uint16 field to the struct and then
    	// adjusting the fields in the result directly.
    	var data1 win32finddata1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return UnrankedTensorType::get(element_type);
      }
      return PrependLeadingDimIfRanked(-1, handle_dtype.getSubtypes()[0], rewriter);
    }
    
    // Gets the index of tensorlist arguments which size might get changed by the
    // function.
    llvm::SmallSet<int, 4> GetResizedTensorListIndexes(
        func::FuncOp func, const llvm::SmallSet<int, 4> &tensor_list_args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		if !ok {
    			t.Fatalf("got %T, not metav1.Object", actualEvent.Object)
    		}
    		if err := validateResourceVersion(obj.GetResourceVersion()); err != nil {
    			t.Fatal(err)
    		}
    
    		// then, check that we have the right type and content
    		pod, ok := actualEvent.Object.(*example.Pod)
    		if !ok {
    			t.Fatalf("got %T, not *example.Pod", actualEvent.Object)
    		}
    		pod.ResourceVersion = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. src/net/http/request.go

    type requestBodyReadError struct{ error }
    
    func idnaASCII(v string) (string, error) {
    	// TODO: Consider removing this check after verifying performance is okay.
    	// Right now punycode verification, length checks, context checks, and the
    	// permissible character tests are all omitted. It also prevents the ToASCII
    	// call from salvaging an invalid IDN, when possible. As a result it may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    An example of component flavors might differentiate between 'demo', 'paid' and 'enterprise' editions of the component, where the same set of sources is used to produce binaries with different functions.
    
    === Example: Defining flavors
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. src/time/format.go

    		buf = append(buf, ", time."...)
    		buf = append(buf, longMonthNames[month-1]...)
    	} else {
    		// It's difficult to construct a time.Time with a date outside the
    		// standard range but we might as well try to handle the case.
    		buf = appendInt(buf, int(month), 0)
    	}
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, day, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, hour, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    			t.worklist = append(t.worklist, w)
    			return nil
    		})
    	}
    	if test.pkg != "" && len(test.pkgs) == 0 {
    		// Common case. Avoid copying.
    		register1(test)
    		return
    	}
    	// TODO(dmitshur,austin): It might be better to unify the execution of 'go test pkg'
    	// invocations for the same variant to be done with a single 'go test pkg1 pkg2 pkg3'
    	// command, just like it's already done in registerStdTest and registerRaceBenchTest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        queueDispatcher.enqueueResponse(MockResponse(body = "call1 response"))
    
        // We use a re-entrant dispatcher to initiate one HTTPS connection while the other is in flight.
        server.dispatcher =
          object : Dispatcher() {
            var requestCount = 0
    
            override fun dispatch(request: RecordedRequest): MockResponse {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	for idx, podSandboxID := range podSandboxIDs {
    		resp, err := m.runtimeService.PodSandboxStatus(ctx, podSandboxID, false)
    		// Between List (getSandboxIDByPodUID) and check (PodSandboxStatus) another thread might remove a container, and that is normal.
    		// The previous call (getSandboxIDByPodUID) never fails due to a pod sandbox not existing.
    		// Therefore, this method should not either, but instead act as if the previous call failed,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      EXPECT_EQ(clusters["test/z"], "");
    }
    
    // Note, this relies on other implementation details to test the
    // specific heuristic we care about here, so other changes might be at fault if
    // this CL breaks. What we care about is that if a ShapeConsumingOp can be
    // connected with a producer or consumer and cannot be clustered with both, it
    // should be clustered with the producer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
Back to top