Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for Naked (0.08 sec)

  1. src/net/ipsock_posix.go

    // IPv6 support too. So probe the kernel to figure it out.
    func (p *ipStackCapabilities) probe() {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		// Both ipv4 and ipv6 are faked; see net_fake.go.
    		p.ipv4Enabled = true
    		p.ipv6Enabled = true
    		p.ipv4MappedIPv6Enabled = true
    		return
    	}
    
    	s, err := sysSocket(syscall.AF_INET, syscall.SOCK_STREAM, syscall.IPPROTO_TCP)
    	switch err {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    		"|http|host-3.dns-is-faked.golang:" + port,
    	}
    	if got := tr.IdleConnKeysForTesting(); !reflect.DeepEqual(got, want) {
    		t.Fatalf("idle conn keys mismatch.\n got: %q\nwant: %q\n", got, want)
    	}
    
    	// Now hitting the 5th host should kick out the first host:
    	hitHost(4)
    	want = []string{
    		"|http|host-1.dns-is-faked.golang:" + port,
    		"|http|host-2.dns-is-faked.golang:" + port,
    		"|http|host-3.dns-is-faked.golang:" + port,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. tests/integration/telemetry/policy/helper_test.go

    					Name:        "tcp-conflict",
    					Protocol:    protocol.TCP,
    					ServicePort: 9091,
    				},
    			},
    			TLSSettings: &common.TLSSettings{
    				// Echo has these test certs baked into the docker image
    				ClientCert: mustReadCert(t, "cert.crt"),
    				Key:        mustReadCert(t, "cert.key"),
    			},
    		}).BuildOrFail(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

     *
     * <p>Mixes GroovyObject into certain types.</p>
     * <p>Generates empty interfaces for certain types that have been removed, but which are baked into the bytecode generated by the Groovy compiler.</p>
     */
    public class MixInLegacyTypesClassLoader extends TransformingClassLoader {
        private static final Type GROOVY_OBJECT_TYPE = Type.getType(GroovyObject.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

        fi
        log-wrap "LoadDockerImages" load-docker-images
        mv "${src_dir}/kubelet" "${KUBE_BIN}"
        mv "${src_dir}/kubectl" "${KUBE_BIN}"
    
        # Some older images have LICENSES baked-in as a file. Presumably they will
        # have the directory baked-in eventually.
        rm -rf "${KUBE_HOME}"/LICENSES
        mv "${KUBE_HOME}/kubernetes/LICENSES" "${KUBE_HOME}"
        mv "${KUBE_HOME}/kubernetes/kubernetes-src.tar.gz" "${KUBE_HOME}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    For example, configuring Istio mTLS in Envoy takes roughly 50 lines of JSON (it is in Protobuf, of course, but still relevant).
    Because Ztunnel can have Istio semantics baked in, we do not need to encode all this information on the wire.
    Instead, an Istio specific field like `ExpectedTLSIdentity: spiffe://foo.bar` can encode the same information, at a fraction of the cost.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    
    	// Set fake sandbox and faked containers to fakeRuntime.
    	makeAndSetFakePod(t, m, fakeRuntime, pod)
    
    	podStatus, err := m.GetPodStatus(ctx, pod.UID, pod.Name, pod.Namespace)
    	assert.NoError(t, err)
    	assert.Equal(t, pod.UID, podStatus.ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/kernels/xla_ops.cc

      // We're missing the must-be-constant inputs, tell `PopulateInputs`
      // about this.  We don't actually need these inputs because they've
      // already been baked into the compiled kernel.
      const xla::HloInputOutputAliasConfig& input_output_alias =
          closure.executable()->executable()->module().input_output_alias_config();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    			if perr := parseLookupPortError(err); perr != nil {
    				t.Error(perr)
    			}
    		}
    	}
    }
    
    // Like TestLookupPort but with minimal tests that should always pass
    // because the answers are baked-in to the net package.
    func TestLookupPort_Minimal(t *testing.T) {
    	type test struct {
    		network string
    		name    string
    		port    int
    	}
    	var tests = []test{
    		{"tcp", "http", 80},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    jars.add(file);
                }
            }
    
            return jars;
        }
    
        //
        // This should probably be a separate tool and not be baked into Maven.
        //
        private void encryption(CliRequest cliRequest) throws Exception {
            if (cliRequest.commandLine.hasOption(CLIManager.ENCRYPT_MASTER_PASSWORD)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top