Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for desc1 (0.05 sec)

  1. src/net/http/client_test.go

    	client := &Client{Transport: &recordingTransport{}}
    	testCases := []struct {
    		desc string
    		in   string
    		out  string
    	}{
    		{
    			desc: "Strip password from error message",
    			in:   "http://user:******@****.***d/",
    			out:  `Get "http://user:***@dummy.faketld/": dummy impl`,
    		},
    		{
    			desc: "Don't Strip password from domain name",
    			in:   "http://user:******@****.***d/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      Option<QuantMethod> quantization_method_{
          *this, "quantization-method",
          llvm::cl::init(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8),
          llvm::cl::desc("Choose quantization method."),
          llvm::cl::values(
              clEnumValN(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    	// newer one, so we set the old timestamp to one second in the past.
    	// See: https://github.com/golang/go/issues/8687
    	old := metav1.NewTime(time.Now().Add(-time.Second))
    	for desc, test := range map[string]struct {
    		condition    *v1.PodCondition
    		oldCondition *v1.PodCondition
    		expectUpdate bool
    	}{
    		"should do nothing if no corresponding condition": {
    			expectUpdate: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    				if len(jsonName) == 0 {
    					continue
    				}
    				if excludedNameSet.Has(jsonName) {
    					continue
    				}
    				var desc string
    				if docable, ok := obj.(documentable); ok {
    					desc = docable.SwaggerDoc()[jsonName]
    				}
    				route.Param(ws.QueryParameter(jsonName, desc).DataType(typeToJSON(sf.Type.String())))
    			}
    		}
    	}
    	return nil
    }
    
    // TODO: this is incomplete, expand as needed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    	}
    	wg.Wait()
    }
    
    func addgonote(ctxt *Link, sectionName string, tag uint32, desc []byte) {
    	ldr := ctxt.loader
    	s := ldr.CreateSymForUpdate(sectionName, 0)
    	s.SetType(sym.SELFROSECT)
    	// namesz
    	s.AddUint32(ctxt.Arch, uint32(len(ELF_NOTE_GO_NAME)))
    	// descsz
    	s.AddUint32(ctxt.Arch, uint32(len(desc)))
    	// tag
    	s.AddUint32(ctxt.Arch, tag)
    	// name + padding
    	s.AddBytes(ELF_NOTE_GO_NAME)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        final String[] values = s.split(":");
                        if (values.length > 1) {
                            return SortBuilders.fieldSort(values[0]).order("desc".equalsIgnoreCase(values[0]) ? SortOrder.DESC : SortOrder.ASC);
                        }
                        return SortBuilders.fieldSort(values[0]).order(SortOrder.ASC);
                    }).toArray(n -> new SortBuilder[n]));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    func newTarget(typ Type, desc string) *target {
    	if typ != nil {
    		if sig, _ := under(typ).(*Signature); sig != nil {
    			return &target{sig, desc}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/css/javadoc.css

        <path d="M10.101 57.059L63.019 4.142l52.917 52.917" style="opacity:.75;"/> \
        <path d="M10.101 86.392l52.917 52.917 52.917-52.917" style="opacity:.35;"/></svg>');
    
    }
    .table-header[onclick].sort-desc::after {
        background-image:url('data:image/svg+xml; utf8, \
        <svg xmlns="http://www.w3.org/2000/svg" width="125" height="170"> \
        <path d="M10.101 57.059L63.019 4.142l52.917 52.917" style="opacity:.35;"/> \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                                                 const EdgeInfoMap& edge_info_map,
                                                 absl::string_view desc) {
        auto it = edge_info_map.find(cluster_name);
        if (it != edge_info_map.end()) {
          VLOG(4) << "  " << it->second.size() << " " << desc << " edges";
          for (const auto& edge_info_count_pair : it->second) {
            VLOG(4) << "   " << edge_info_count_pair.first.GetClusterName() << " "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top