Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for Missing (0.18 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      return PostProcessFuncOp(func);
    }
    
    // TFLite subgraphs do not necessarily have names, though MLIR functions must
    // have them, so we generate a name for subgraphs that are missing one here.
    // Note: in TFLite, the first subgraph is the entry point, and in MLIR that
    // represents TFLite, this entry point must be called "main"
    std::string SubgraphName(bool set_implicit_main_func, unsigned index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    func TestTLSPointFormats(t *testing.T) {
    	// Test that a Server returns the ec_point_format extension when ECC is
    	// negotiated, and not on a RSA handshake or if ec_point_format is missing.
    	tests := []struct {
    		name                string
    		cipherSuites        []uint16
    		supportedCurves     []CurveID
    		supportedPoints     []uint8
    		wantSupportedPoints bool
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	cgroupRoots = append(cgroupRoots, nodeAllocatableRoot)
    	kubeletCgroup, err := cm.GetKubeletContainer(s.KubeletCgroups)
    	if err != nil {
    		klog.InfoS("Failed to get the kubelet's cgroup. Kubelet system container metrics may be missing.", "err", err)
    	} else if kubeletCgroup != "" {
    		cgroupRoots = append(cgroupRoots, kubeletCgroup)
    	}
    
    	if s.RuntimeCgroups != "" {
    		// RuntimeCgroups is optional, so ignore if it isn't specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

        tensor_type_ = GetParam();
        input_model_ = ReadModel(internal::kConvModelWith0Plus10Weights);
        readonly_model_ = input_model_->GetModel();
        model_ = UnPackFlatBufferModel(*readonly_model_);
        // Flatbuffer is missing calibration data -- add dummy params.
        auto& subgraph = model_.subgraphs[0];
        auto* input = subgraph->tensors[subgraph->inputs[0]].get();
        auto* output = subgraph->tensors[subgraph->outputs[0]].get();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    			pathf("%s/src/runtime/asm_ppc64x.h", goroot), 0)
    		copyfile(pathf("%s/pkg/include/asm_amd64.h", goroot),
    			pathf("%s/src/runtime/asm_amd64.h", goroot), 0)
    	}
    
    	// Generate any missing files; regenerate existing ones.
    	for _, gt := range gentab {
    		if gt.pkg != pkg {
    			continue
    		}
    		p := pathf("%s/%s", dir, gt.file)
    		if vflag > 1 {
    			errprintf("generate %s\n", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    			_, err := ParsePrefix(test.prefix)
    			if err == nil {
    				t.Fatal("no error")
    			}
    			if got := err.Error(); !strings.Contains(got, test.errstr) {
    				t.Errorf("error is missing substring %q: %s", test.errstr, got)
    			}
    		})
    	}
    }
    
    func TestPrefixIsSingleIP(t *testing.T) {
    	tests := []struct {
    		ipp  Prefix
    		want bool
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. cmd/sts-handlers_test.go

    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that user listing does not return any entries
    	usersList, err := s.adm.ListUsers(ctx)
    	if err != nil {
    		c.Fatalf("list users should not fail: %v", err)
    	}
    	if len(usersList) != 1 {
    		c.Fatalf("expected user listing output: %v", usersList)
    	}
    	uinfo := usersList[userDN]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    		if s.hasRange(typ) {
    			return fmt.Errorf("found named active range already in first gen: %v", typ)
    		}
    		s.inFlight = append(s.inFlight, typ)
    	} else if !s.hasRange(typ) {
    		return fmt.Errorf("resource is missing active range: %v %v", go122.Specs()[typ.typ].Name, s.inFlight)
    	}
    	return nil
    }
    
    // hasRange returns true if a special time range on the goroutine as in progress.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. src/net/url/url_test.go

    			}
    			if len(form) != len(test.out) {
    				t.Errorf("len(form) = %d, want %d", len(form), len(test.out))
    			}
    			for k, evs := range test.out {
    				vs, ok := form[k]
    				if !ok {
    					t.Errorf("Missing key %q", k)
    					continue
    				}
    				if len(vs) != len(evs) {
    					t.Errorf("len(form[%q]) = %d, want %d", k, len(vs), len(evs))
    					continue
    				}
    				for j, ev := range evs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. gradle/verification-metadata.xml

       You should then edit the origin to be "Verified". Note that editing those entries means you
       verified that the checksum matches.
    
       If the generation above did not resolve your issue, a task might be missing that exercise the
       dependency but is not covered by the current resolveAllDependencies. Edit the task definition to
       add the required task dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
Back to top