Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 192 for logical (0.12 sec)

  1. src/cmd/link/internal/loader/loader.go

    	}
    	ms.data = ms.data[:siz]
    }
    
    // Convert a local index to a global index.
    func (l *Loader) toGlobal(r *oReader, i uint32) Sym {
    	return r.syms[i]
    }
    
    // Convert a global index to a local index.
    func (l *Loader) toLocal(i Sym) (*oReader, uint32) {
    	return l.objs[l.objSyms[i].objidx], l.objSyms[i].s
    }
    
    // Resolve a local symbol reference. Return global index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    		return
    	}
    
    	o := func(op uint32) {
    		initfunc.AddUint32(ctxt.Arch, op)
    	}
    
    	// Write a function to load this module's local.moduledata. This is shared code.
    	//
    	// package link
    	// void addmoduledata() {
    	//	runtime.addmoduledata(local.moduledata)
    	// }
    
    	if !hasPCrel {
    		// Regenerate TOC from R12 (the address of this function).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [[sec:local-keyring-only]]
    == Forcing use of local keyrings only
    
    The local keyring files (`.gpg` or `.keys`) can be used to avoid reaching out to key servers whenever a key is required to verify an artifact.
    However, it may be that the local keyring doesn't contain a key, in which case Gradle would use the key servers to fetch the missing key.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/{{.Namespace}}/sa/{{.Source}}", "cluster.local/ns/{{.Namespace}}/sa/{{.WaypointName}}"]
    `,
    				},
    				{
    					name:  "not allow",
    					check: CheckDeny,
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/something/sa/else"]
              `,
    				},
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	}
    	return name[i:]
    }
    
    var installgoroot = godebug.New("installgoroot")
    
    // Import returns details about the Go package named by the import path,
    // interpreting local import paths relative to the srcDir directory.
    // If the path is a local import path naming a package that can be imported
    // using a standard import path, the returned package will set p.ImportPath
    // to that path.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    			multicast:          true,
    		},
    		{
    			name:             "link-local unicast v4Addr",
    			ip:               llu4,
    			linkLocalUnicast: true,
    		},
    		{
    			name:             "link-local unicast v6 mapped v4Addr",
    			ip:               AddrFrom16(llu4.As16()),
    			linkLocalUnicast: true,
    		},
    		{
    			name:             "link-local unicast v6Addr",
    			ip:               llu6,
    			linkLocalUnicast: true,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	activeCall atomic.Int32
    
    	tmp [16]byte
    }
    
    // Access to net.Conn methods.
    // Cannot just embed net.Conn because that would
    // export the struct field too.
    
    // LocalAddr returns the local network address.
    func (c *Conn) LocalAddr() net.Addr {
    	return c.conn.LocalAddr()
    }
    
    // RemoteAddr returns the remote network address.
    func (c *Conn) RemoteAddr() net.Addr {
    	return c.conn.RemoteAddr()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(new TypeToken<List<String>>() {}, t);
      }
    
      public void testNonStaticLocalClass() {
        class Local<T> {}
        TypeToken<Local<String>> type = new TypeToken<Local<String>>() {};
        assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType());
        assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType());
      }
    
      public void testStaticLocalClass() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(new TypeToken<List<String>>() {}, t);
      }
    
      public void testNonStaticLocalClass() {
        class Local<T> {}
        TypeToken<Local<String>> type = new TypeToken<Local<String>>() {};
        assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType());
        assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType());
      }
    
      public void testStaticLocalClass() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pkg/proxy/endpointschangetracker_test.go

    			},
    		},
    		expected: map[types.NamespacedName]sets.Set[string]{
    			{Namespace: "ns1", Name: "ep1"}: sets.New[string]("1.1.1.1"),
    		},
    	}, {
    		// Case[3]: named local and non-local ports for the same IP.
    		endpointsMap: EndpointsMap{
    			makeServicePortName("ns1", "ep1", "p11", v1.ProtocolTCP): []Endpoint{
    				&BaseEndpointInfo{ip: "1.1.1.1", port: 11, endpoint: "1.1.1.1:11", isLocal: false, ready: true, serving: true, terminating: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
Back to top