Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,769 for indirectly (0.19 sec)

  1. src/cmd/compile/internal/walk/assign.go

    		assigned.Add(name)
    	}
    
    	early.Append(late.Take()...)
    	return early
    }
    
    // readsMemory reports whether the evaluation n directly reads from
    // memory that might be written to indirectly.
    func readsMemory(n ir.Node) bool {
    	switch n.Op() {
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		if n.Class == ir.PFUNC {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/internal/abi/type.go

    func (t *Type) Pointers() bool { return t.PtrBytes != 0 }
    
    // IfaceIndir reports whether t is stored indirectly in an interface value.
    func (t *Type) IfaceIndir() bool {
    	return t.Kind_&KindDirectIface == 0
    }
    
    // isDirectIface reports whether t is stored directly in an interface value.
    func (t *Type) IsDirectIface() bool {
    	return t.Kind_&KindDirectIface != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. src/net/http/requestwrite_test.go

    	io.Reader
    	closed bool
    }
    
    func (rc *closeChecker) Close() error {
    	rc.closed = true
    	return nil
    }
    
    // TestRequestWriteClosesBody tests that Request.Write closes its request.Body.
    // It also indirectly tests NewRequest and that it doesn't wrap an existing Closer
    // inside a NopCloser, and that it serializes it correctly.
    func TestRequestWriteClosesBody(t *testing.T) {
    	rc := &closeChecker{Reader: strings.NewReader("my body")}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       .testEquals();
       *   }
       * }
       * </pre>
       *
       * <p>It will test that Foo objects created by the {@code create(a, b, c, d)} factory method with
       * equal parameters are equal and vice versa, thus indirectly tests the builder equality.
       */
      public void testEquals(Class<?> cls) {
        try {
          doTestEquals(cls);
        } catch (Exception e) {
          throwIfUnchecked(e);
          throw new RuntimeException(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    	// direct is the set of module paths for which we believe the module provides
    	// a package directly imported by a package or test in the main module.
    	//
    	// The "direct" map controls which modules are annotated with "// indirect"
    	// comments in the go.mod file, and may impact which modules are listed as
    	// explicit roots (vs. indirect-only dependencies). However, it should not
    	// have a semantic effect on the build list overall.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/runtime/netpoll.go

    // makeArg does not do any allocation. Normally, such
    // a conversion requires an allocation because pointers to
    // types which embed runtime/internal/sys.NotInHeap (which pollDesc is)
    // must be stored in interfaces indirectly. See issue 42076.
    func (pd *pollDesc) makeArg() (i any) {
    	x := (*eface)(unsafe.Pointer(&i))
    	x._type = pdType
    	x.data = unsafe.Pointer(&pd.self)
    	return
    }
    
    var (
    	pdEface any    = (*pollDesc)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/net/net.go

    	}
    
    # Name Resolution
    
    The method for resolving domain names, whether indirectly with functions like Dial
    or directly with functions like [LookupHost] and [LookupAddr], varies by operating system.
    
    On Unix systems, the resolver has two options for resolving names.
    It can use a pure Go resolver that sends DNS requests directly to the servers
    listed in /etc/resolv.conf, or it can use a cgo-based resolver that calls C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       *       .testEquals();
       *   }
       * }
       * </pre>
       *
       * <p>It will test that Foo objects created by the {@code create(a, b, c, d)} factory method with
       * equal parameters are equal and vice versa, thus indirectly tests the builder equality.
       */
      public void testEquals(Class<?> cls) {
        try {
          doTestEquals(cls);
        } catch (Exception e) {
          throwIfUnchecked(e);
          throw new RuntimeException(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    	}
    	return nil, false
    }
    
    // killCycles walks through the given type parameters and looks for cycles
    // created by type parameters whose inferred types refer back to that type
    // parameter, either directly or indirectly. If such a cycle is detected,
    // it is killed by setting the corresponding inferred type to nil.
    //
    // TODO(gri) Determine if we can simply abort inference as soon as we have
    // found a single cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. LICENSE

    may not distribute the Library at all.  For example, if a patent
    license would not permit royalty-free redistribution of the Library by
    all those who receive copies directly or indirectly through you, then
    the only way you could satisfy both it and this License would be to
    refrain entirely from distribution of the Library.
    
    If any portion of this section is held invalid or unenforceable under any
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
Back to top