Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for envMap (0.39 sec)

  1. src/runtime/rt0_android_386.s

    	CALL	_rt0_386_lib(SB)
    	POPL	AX
    	POPL	AX
    	RET
    
    DATA _rt0_386_android_argv+0x00(SB)/4,$_rt0_386_android_argv0(SB)
    DATA _rt0_386_android_argv+0x04(SB)/4,$0  // argv terminate
    DATA _rt0_386_android_argv+0x08(SB)/4,$0  // envp terminate
    DATA _rt0_386_android_argv+0x0c(SB)/4,$0  // auxv terminate
    GLOBL _rt0_386_android_argv(SB),NOPTR,$0x10
    
    // TODO: wire up necessary VDSO (see os_linux_386.go)
    
    DATA _rt0_386_android_argv0(SB)/8, $"gojni"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 21 04:56:36 UTC 2018
    - 822 bytes
    - Viewed (0)
  2. pkg/kubelet/envvars/envvars_test.go

    				ClusterIP: "1.2.3.4",
    				Ports: []v1.ServicePort{
    					{Port: 777, Protocol: "SCTP"},
    				},
    			},
    		},
    	}
    	vars := envvars.FromServices(sl)
    	expected := []v1.EnvVar{
    		{Name: "FOO_BAR_SERVICE_HOST", Value: "1.2.3.4"},
    		{Name: "FOO_BAR_SERVICE_PORT", Value: "8080"},
    		{Name: "FOO_BAR_PORT", Value: "tcp://1.2.3.4:8080"},
    		{Name: "FOO_BAR_PORT_8080_TCP", Value: "tcp://1.2.3.4:8080"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 27 05:56:27 UTC 2018
    - 5.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/waypoint.go

    	ConnectOriginate = "connect_originate"
    
    	// EncapClusterName is the name of the cluster used for traffic to the connect_originate listener.
    	EncapClusterName = "encap"
    
    	// ConnectUpgradeType is the type of upgrade for HTTP CONNECT.
    	ConnectUpgradeType = "CONNECT"
    )
    
    type waypointServices struct {
    	services        map[host.Name]*model.Service
    	orderedServices []*model.Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/crypto/internal/hpke/hpke.go

    	eaePRK := dh.kdf.LabeledExtract(dh.suiteID[:], nil, "eae_prk", dhKey)
    	return dh.kdf.LabeledExpand(dh.suiteID[:], eaePRK, "shared_secret", kemContext, dh.nSecret)
    }
    
    func (dh *dhKEM) Encap(pubRecipient *ecdh.PublicKey) (sharedSecret []byte, encapPub []byte, err error) {
    	var privEph *ecdh.PrivateKey
    	if testingOnlyGenerateKey != nil {
    		privEph, err = testingOnlyGenerateKey()
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. pkg/kubelet/secret/secret_manager_test.go

    			envSource := &v1.EnvVarSource{
    				SecretKeyRef: &v1.SecretKeySelector{
    					LocalObjectReference: v1.LocalObjectReference{
    						Name: name,
    					},
    				},
    			}
    			container.Env = append(container.Env, v1.EnvVar{ValueFrom: envSource})
    		}
    		pod.Spec.Containers = append(pod.Spec.Containers, container)
    	}
    	return pod
    }
    
    func TestCacheBasedSecretManager(t *testing.T) {
    	fakeClient := &fake.Clientset{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    					out = strings.TrimSuffix(out, "\n")
    					if err != nil {
    						return fmt.Errorf("could not exec into pod: %v", err)
    					}
    					if out != v {
    						return fmt.Errorf("expected envvar %s with value %q, got %q", k, v, out)
    					}
    				}
    			}
    			return nil
    		}, retry.Timeout(time.Second*45))
    	}
    }
    
    func applyProxyConfigs(ctx framework.TestContext, configs []proxyConfigInstance) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/kubelet/configmap/configmap_manager_test.go

    			envSource := &v1.EnvVarSource{
    				ConfigMapKeyRef: &v1.ConfigMapKeySelector{
    					LocalObjectReference: v1.LocalObjectReference{
    						Name: name,
    					},
    				},
    			}
    			container.Env = append(container.Env, v1.EnvVar{ValueFrom: envSource})
    		}
    		pod.Spec.Containers = append(pod.Spec.Containers, container)
    	}
    	for _, configMap := range toAttach.volumes {
    		volume := &v1.ConfigMapVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  8. src/runtime/syscall_aix.go

    	val, err = syscall2(&libc_dup2, old, new)
    	return
    }
    
    //go:linkname syscall_execve syscall.execve
    //go:nosplit
    func syscall_execve(path, argv, envp uintptr) (err uintptr) {
    	_, err = syscall3(&libc_execve, path, argv, envp)
    	return
    }
    
    // like exit, but must not split stack, for fork.
    //
    //go:linkname syscall_exit syscall.exit
    //go:nosplit
    func syscall_exit(code uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

          for (const NamedAttribute& pair : composite.getCompositeAttributes()) {
            // Allows skipping unsupported attributes, will warn.
            (void)BuildOption(fbb.get(), op, pair);
          }
          fbb->EndMap(map_start);
          fbb->Finish();
          custom_option_buffer.assign(fbb->GetBuffer().begin(),
                                      fbb->GetBuffer().end());
    
          // Build TFL custom op, replace composite with custom op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/response-status-code.md

    ## Sobre os códigos de status HTTP
    
    !!! note "Nota"
        Se você já sabe o que são códigos de status HTTP, pule para a próxima seção.
    
    Em HTTP, você envia um código de status numérico de 3 dígitos como parte da resposta.
    
    Esses códigos de status têm um nome associado para reconhecê-los, mas o importante é o número.
    
    Resumidamente:
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 16:22:07 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top