Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for elide (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		in := &metav1.UpdateOptions{}
    		f.Fuzz(in)
    		in.TypeMeta.SetGroupVersionKind(metav1.SchemeGroupVersion.WithKind("CreateOptions"))
    
    		out := newCreateOptionsFromUpdateOptions(in)
    
    		// This sequence is intending to elide type information, but produce an
    		// intermediate structure (map) that can be manually patched up to make
    		// the comparison work as needed.
    
    		// Convert both structs to maps of primitives.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    func (b *Builder) ccompile(a *Action, outfile string, flags []string, file string, compiler []string) error {
    	p := a.Package
    	sh := b.Shell(a)
    	file = mkAbs(p.Dir, file)
    	outfile = mkAbs(p.Dir, outfile)
    
    	// Elide source directory paths if -trimpath is set.
    	// This is needed for source files (e.g., a .c file in a package directory).
    	// TODO(golang.org/issue/36072): cgo also generates files with #line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      return ConstBytesAttr::get(parser.getBuilder().getContext(), bytes_data);
    }
    
    void ConstBytesAttr::print(mlir::AsmPrinter& printer) const {
      StringRef bytes_str = getValue();
      // Elide the attribute if flag is set.
      std::optional<int64_t> limit = OpPrintingFlags().getLargeElementsAttrLimit();
      printer << " : \"";
      if (limit && limit.value() < bytes_str.size()) {
        printer << "__elided__";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Don't zero the same bits twice.
    (Zero {t} [s] dst1 zero:(Zero {t} [s] dst2 _)) && isSamePtr(dst1, dst2) => zero
    (Zero {t} [s] dst1 vardef:(VarDef (Zero {t} [s] dst2 _))) && isSamePtr(dst1, dst2) => vardef
    
    // Elide self-moves. This only happens rarely (e.g test/fixedbugs/bug277.go).
    // However, this rule is needed to prevent the previous rule from looping forever in such cases.
    (Move dst src mem) && isSamePtr(dst, src) => mem
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          }
        } else {
          return failure();
        }
        return success();
      }
    
     private:
      // Returns the dimension length of the channel dimension and also the slide
      // size by each position in the channel dimension accordingly. tfl.conv2d and
      // tfl.fully_connected has heading channel dimension, but tfl.depthwise_conv2d
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                       [](Value value) { return value == nullptr; }))
        return op->emitOpError("operation has null operand");
    
      // Functions have one less operand compared to op as first operand is elided
      // (`cond` of `tf.If` and `branch_index` of `tf.Case`).
      TypeRangeWithDesc input{op->getOperands().drop_front().getTypes(), "input"};
      TypeRangeWithDesc result{op->getResultTypes(), "result"};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    //	go doc
    //
    // it prints the package documentation for the package in the current directory.
    // If the package is a command (package main), the exported symbols of the package
    // are elided from the presentation unless the -cmd flag is provided.
    //
    // When run with one argument, the argument is treated as a Go-syntax-like
    // representation of the item to be documented. What the argument selects depends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"service3", "LoadBalancer", "1.4.5.6", "2.3.4.5", "80/TCP,8090/UDP,8000/TCP", "<unknown>"}}},
    		},
    		// Long external IP's list gets elided.
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service4"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.5.6.7"},
    					Type:       "LoadBalancer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top