Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for futuna (0.17 sec)

  1. src/cmd/link/internal/ld/data.go

    			// fail at runtime. See https://golang.org/issue/7980.
    			// Instead of special casing only amd64, we treat this as an error on all
    			// 64-bit architectures so as to be future-proof.
    			if int32(o) < 0 && target.Arch.PtrSize > 4 && siz == 4 {
    				st.err.Errorf(s, "non-pc-relative relocation address for %s is too big: %#x (%#x + %#x)", ldr.SymName(rs), uint64(o), ldr.SymValue(rs), r.Add())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/database/sql/sql_test.go

    			// If not, the test should still pass, like in "go" mode.
    			cancel()
    			time.Sleep(100 * time.Millisecond)
    		}
    		if mode == "go" && numRows == 2 {
    			// cancel at any future time, to catch other cases
    			go cancel()
    		}
    		for _, b := range s { // some operation reading from the raw memory
    			sink += b
    		}
    	}
    	if r.closemuScanHold {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    // we registered everything, and returned method not supported if it didn't support
    // a verb.  Now we literally do not register a storage if it does not implement anything.
    // TODO: in future, we should update proxy/redirect
    func TestUnimplementedRESTStorage(t *testing.T) {
    	type T struct {
    		Method  string
    		Path    string
    		ErrCode int
    	}
    	cases := map[string]T{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	// Every import path should be loaded initially with ResolveImport,
    	// and then the expanded version (for example with the /vendor/ in it)
    	// gets recorded as the canonical import path. At that point, future loads
    	// of that package must not pass ResolveImport, because
    	// disallowVendor will reject direct use of paths containing /vendor/.
    	ResolveImport = 1 << iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/reflect/value.go

    // copyVal returns a Value containing the map key or value at ptr,
    // allocating a new variable as needed.
    func copyVal(typ *abi.Type, fl flag, ptr unsafe.Pointer) Value {
    	if typ.IfaceIndir() {
    		// Copy result so future changes to the map
    		// won't change the underlying value.
    		c := unsafe_New(typ)
    		typedmemmove(typ, c, ptr)
    		return Value{typ, c, fl | flagIndir}
    	}
    	return Value{typ, *(*unsafe.Pointer)(ptr), fl}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      };
    
      // For NextIteration nodes, location is used to pair source and sink nodes.
      // Hence, we use node name as location to keep it unique.
      // TODO(prakalps): In future the plan is to use tokens to pair source/sink
      // nodes. Then NextIteration nodes would not need to be handled separately.
      if (node.type_string() == "NextIteration") {
        return create_op_type_and_name_locations();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    # - Meshes will have their telemetry aggregated in one place # - Meshes will be federated together # - Policy will be written referencing one mesh from the other # # If an administrator expects that any of these conditions may become true in # the future, they should ensure their meshes have different Mesh IDs # assigned. # # Within a multicluster mesh, each cluster must be (manually or auto) # configured to have the same Mesh ID value. If an existing cluster 'joins' a # multicluster mesh, it will...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    //
    // As of 6/1/2012, the effect of setting maxLoopPad = 10 here
    // is very slight but negative, so the alignment is disabled by
    // setting MaxLoopPad = 0. The code is here for reference and
    // for future experiments.
    const (
    	loopAlign  = 16
    	maxLoopPad = 0
    )
    
    // Bit flags that are used to express jump target properties.
    const (
    	// branchBackwards marks targets that are located behind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    }
    
    // Verifies that the Transport doesn't reuse a connection in the case
    // where the server replies before the request has been fully
    // written. We still honor that reply (see TestIssue3595), but don't
    // send future requests on the connection because it's then in a
    // questionable state.
    // golang.org/issue/7569
    func TestTransportNoReuseAfterEarlyResponse(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    // to make different method call sequences on x, but there must be no
    // other source of non-determinism in the call sequences.
    //
    // When faced with a new decision, x chooses randomly. Future explorations
    // of that path will choose successive values for the result. Thus, stopping
    // the loop after a fixed number of iterations gives somewhat stochastic
    // testing.
    //
    // Example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top