Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for NCases (0.13 sec)

  1. tensorflow/c/kernels_test.cc

        down_cast<AsyncOpKernel*>(kernel.get())->ComputeAsync(nullptr, done);
      }
    
      ASSERT_TRUE(async_kernel_done);
      ASSERT_TRUE(delete_called);
    }
    
    // REGISTER_OP for TF_OpKernelConstruction_GetAttr* test cases.
    // Registers two ops, each with a single attribute called 'Attr'.
    // The attribute in one op will have a type 'type', the other
    // will have list(type).
    #define ATTR_TEST_REGISTER_OP(name, type)                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    			r.Header.RCode = dnsmessage.RCodeNameError
    		}
    
    		return r, nil
    	}}
    
    	cases := []struct {
    		strictErrors bool
    		wantErr      *DNSError
    	}{
    		{true, &DNSError{Name: fqdn, Err: "server misbehaving", IsTemporary: true}},
    		{false, &DNSError{Name: fqdn, Err: errNoSuchHost.Error(), IsNotFound: true}},
    	}
    	for _, tt := range cases {
    		r := Resolver{PreferGo: true, StrictErrors: tt.strictErrors, Dial: fake.DialContext}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK-NEXT:  %[[cst:.*]] = arith.constant dense<-2.540000e+01> : tensor<f32>
    // CHECK-NEXT:  "tfl.quantize"(%[[cst]]) <{qtype = tensor<!quant.uniform<u8:f32, 0.099607841641295186:255>>}> {volatile}
    }
    
    // Make sure biases are not shared.
    // CHECK-LABEL: QuantizeSharedBiases
    func.func @QuantizeSharedBiases(
        %arg0: tensor<1x224x224x3x!quant.uniform<u8:f32, 1.0>>,
        %arg1: tensor<32x3x3x3x!quant.uniform<u8<1:255>:f32, 1.0>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      TF_ASSIGN_OR_RETURN(bool initialized, Initialize());
      if (!initialized) {
        // Initialization exited early which means this instance of
        // MarkForCompilationPassImpl is not set up to run the subsequent phases.
        return absl::OkStatus();
      }
    
      TF_RETURN_IF_ERROR(RunEdgeContractionLoop());
      TF_RETURN_IF_ERROR(DeclusterNodes());
      TF_RETURN_IF_ERROR(CreateClusters());
      TF_RETURN_IF_ERROR(DumpDebugInfo());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    		}
    	}
    
    	gcBgMarkStartWorkers()
    
    	systemstack(gcResetMarkState)
    
    	work.stwprocs, work.maxprocs = gomaxprocs, gomaxprocs
    	if work.stwprocs > ncpu {
    		// This is used to compute CPU time of the STW phases,
    		// so it can't be more than ncpu, even if GOMAXPROCS is.
    		work.stwprocs = ncpu
    	}
    	work.heap0 = gcController.heapLive.Load()
    	work.pauseNS = 0
    	work.mode = mode
    
    	now := nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. pkg/apis/networking/validation/validation_test.go

    				makePort(nil, intstr.FromInt32(32000), 32768),
    			),
    			setIngressFromPodSelector("e", "f"),
    			setIngressPorts(makePort(&protocolTCP, intstr.FromInt32(32768), 32768))),
    	}
    
    	// Success cases are expected to pass validation.
    
    	for k, v := range successCases {
    		if errs := ValidateNetworkPolicy(v, NetworkPolicyValidationOptions{AllowInvalidLabelValueInSelector: true}); len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                        List<?> unrecognized = mavenConfig.getArgList();
                        if (!unrecognized.isEmpty()) {
                            // This file can only contain options, not args (goals or phases)
                            throw new ParseException("Unrecognized maven.config file entries: " + unrecognized);
                        }
                    }
                }
            } catch (ParseException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    take precedence over annotations declared in implemented interfaces.
    
    The link:{javadocPath}/org/gradle/api/tasks/Console.html[Console] and link:{javadocPath}/org/gradle/api/tasks/Internal.html[Internal] annotations in the table are special cases as they don’t declare either task inputs or task outputs. So why use them? It's so that you can take advantage of the <<java_gradle_plugin.adoc#java_gradle_plugin,Java Gradle Plugin Development plugin>> to help you develop and publish your own plugins....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		},
    	}
    	return pod, status
    }
    
    func TestComputePodActions(t *testing.T) {
    	_, _, m, err := createTestRuntimeManager()
    	require.NoError(t, err)
    
    	// Creating a pair reference pod and status for the test cases to refer
    	// the specific fields.
    	basePod, baseStatus := makeBasePodAndStatus()
    	noAction := podActions{
    		SandboxID:         baseStatus.SandboxStatuses[0].Id,
    		ContainersToStart: []int{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/get.go

    //
    // chooseArbitrarily prefers module paths that were already in the build list at
    // the start of 'go get', prefers modules that provide packages over those that
    // do not, and chooses the first module meeting those criteria (so biases toward
    // longer paths).
    func (r *resolver) chooseArbitrarily(cs pathSet) (isPackage bool, m module.Version) {
    	// Prefer to upgrade some module that was already in the build list.
    	for _, m := range cs.pkgMods {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top