Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 829 for indirected (0.14 sec)

  1. tensorflow/cc/experimental/libtf/value.h

      ///
      /// In principle this could be incorporated into the union
      /// for pointer types and non-64bit values, but then int64 and float64 values
      /// would need to be indirected.  This means that we are aiming for a total
      /// data type size of <=16 bytes, comprised of one pointer (8 bytes) and
      /// one type (<=8bytes).
      Type type_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/text/template/funcs.go

    	return url.QueryEscape(evalArgs(args))
    }
    
    // evalArgs formats the list of arguments into a string. It is therefore equivalent to
    //
    //	fmt.Sprint(args...)
    //
    // except that each argument is indirected (if a pointer), as required,
    // using the same rules as the default string evaluation during template
    // execution.
    func evalArgs(args []any) string {
    	ok := false
    	var s string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. src/encoding/gob/encode.go

    // indirections associated with the elements of the data structure.
    // If any pointer so reached is nil, no bytes are written. If the
    // data item is zero, no bytes are written. Single values - ints,
    // strings etc. - are indirected before calling their encoders.
    // Otherwise, the output (for a scalar) is the field number, as an
    // encoded integer, followed by the field data in its appropriate
    // format.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/builtins.go

    			check.errorf(arg0, InvalidOffsetof, invalidArg+"%s is a method value", arg0)
    			return
    		}
    		if indirect {
    			check.errorf(x, InvalidOffsetof, invalidArg+"field %s is embedded via a pointer in %s", sel, base)
    			return
    		}
    
    		// TODO(gri) Should we pass x.typ instead of base (and have indirect report if derefStructPtr indirected)?
    		check.recordSelection(selx, FieldVal, base, obj, index, false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. src/go/types/builtins.go

    			check.errorf(arg0, InvalidOffsetof, invalidArg+"%s is a method value", arg0)
    			return
    		}
    		if indirect {
    			check.errorf(x, InvalidOffsetof, invalidArg+"field %s is embedded via a pointer in %s", sel, base)
    			return
    		}
    
    		// TODO(gri) Should we pass x.typ instead of base (and have indirect report if derefStructPtr indirected)?
    		check.recordSelection(selx, FieldVal, base, obj, index, false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// unaddressable expression.
    	//
    	// Example:
    	//  var x = &1
    	UnaddressableOperand
    
    	// InvalidIndirection occurs when a non-pointer value is indirected via the
    	// '*' operator.
    	//
    	// Example:
    	//  var x int
    	//  var y = *x
    	InvalidIndirection
    
    	/* exprs > [] */
    
    	// NonIndexableOperand occurs when an index operation is applied to a value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.go

    	// unaddressable expression.
    	//
    	// Example:
    	//  var x = &1
    	UnaddressableOperand
    
    	// InvalidIndirection occurs when a non-pointer value is indirected via the
    	// '*' operator.
    	//
    	// Example:
    	//  var x int
    	//  var y = *x
    	InvalidIndirection
    
    	// NonIndexableOperand occurs when an index operation is applied to a value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. src/text/template/exec.go

    	if err != nil {
    		s.writeError(err)
    	}
    }
    
    // printableValue returns the, possibly indirected, interface value inside v that
    // is best for a call to formatted printer.
    func printableValue(v reflect.Value) (any, bool) {
    	if v.Kind() == reflect.Pointer {
    		v, _ = indirect(v) // fmt.Fprint handles nil.
    	}
    	if !v.IsValid() {
    		return "<no value>", true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/graph/StandardImmutableGraphAdditionalTest.java

        assertThat(emptyGraph.isDirected()).isTrue();
        assertThat(emptyGraph.allowsSelfLoops()).isTrue();
        assertThat(emptyGraph.nodeOrder()).isEqualTo(ElementOrder.<String>natural());
      }
    
      @Test
      public void copyOf_incidentEdgeOrder() {
        ImmutableGraph<Object> graph = ImmutableGraph.copyOf(GraphBuilder.undirected().build());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 09 20:24:43 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/graph/StandardImmutableGraphAdditionalTest.java

        assertThat(emptyGraph.isDirected()).isTrue();
        assertThat(emptyGraph.allowsSelfLoops()).isTrue();
        assertThat(emptyGraph.nodeOrder()).isEqualTo(ElementOrder.<String>natural());
      }
    
      @Test
      public void copyOf_incidentEdgeOrder() {
        ImmutableGraph<Object> graph = ImmutableGraph.copyOf(GraphBuilder.undirected().build());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 09 20:24:43 UTC 2020
    - 4.5K bytes
    - Viewed (0)
Back to top