Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for envMap (0.42 sec)

  1. docs/pt/docs/tutorial/body-nested-models.md

    {!../../../docs_src/body_nested_models/tutorial003.py!}
    ```
    
    Com isso, mesmo que você receba uma requisição contendo dados duplicados, ela será convertida em um conjunto de itens exclusivos.
    
    E sempre que você enviar esses dados como resposta, mesmo se a fonte tiver duplicatas, eles serão gerados como um conjunto de itens exclusivos.
    
    E também teremos anotações/documentação em conformidade.
    
    ## Modelos aninhados
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults.go

    	}
    	if obj.Timeouts == nil {
    		obj.Timeouts = &Timeouts{}
    	}
    	SetDefaults_Timeouts(obj.Timeouts)
    }
    
    // SetDefaults_EnvVar assigns default values for EnvVar.
    // +k8s:defaulter-gen=covers
    func SetDefaults_EnvVar(obj *EnvVar) {
    	if obj.ValueFrom != nil {
    		if obj.ValueFrom.FieldRef != nil {
    			if obj.ValueFrom.FieldRef.APIVersion == "" {
    				obj.ValueFrom.FieldRef.APIVersion = "v1"
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 9.3K 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. 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)
  6. 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)
  7. tensorflow/compiler/mlir/lite/utils/nms_utils.cc

      if (!use_regular_nms) {
        return func.emitError()
               << "use_regular_nms attribute is not set or not a bool";
      }
      fbb.Int("use_regular_nms", use_regular_nms.getValue());
    
      fbb.EndMap(start_map);
      fbb.Finish();
      custom_option_buffer.assign(fbb.GetBuffer().begin(), fbb.GetBuffer().end());
      return success();
    }
    
    LogicalResult ConvertSSDPostProcessFunc::AddIntAttr(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/runtime/rt0_linux_ppc64le.s

    	// sequence of string pointers followed by a NULL, and auxv.
    	// The TLS pointer should be initialized to 0.
    	//
    	// In an ELFv2 compliant dynamically linked binary, R3 contains argc,
    	// R4 contains argv, R5 contains envp, R6 contains auxv, and R13
    	// contains the TLS pointer.
    	//
    	// When loading via glibc, the first doubleword on the stack points
    	// to NULL a value. (that is *(uintptr)(R1) == 0). This is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_openbsd_libc.go

    //sys	getcwd(buf []byte) (n int, err error)
    //sys	sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen uintptr) (err error)
    //sysnb fork() (pid int, err error)
    //sysnb execve(path *byte, argv **byte, envp **byte) (err error)
    //sysnb exit(res int) (err error)
    //sys   ptrace(request int, pid int, addr uintptr, data uintptr) (err error)
    //sysnb getentropy(p []byte) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. tests/integration/pilot/multicluster_test.go

    			template := deps.Items[0].Spec.Template.Spec
    			for _, container := range template.Containers {
    				if container.Name != "discovery" {
    					continue
    				}
    				container.Env = append(container.Env, corev1.EnvVar{
    					Name:  "PILOT_REMOTE_CLUSTER_TIMEOUT",
    					Value: "15s",
    				})
    			}
    			_, err = pods.Create(context.TODO(), &corev1.Pod{
    				ObjectMeta: podMeta,
    				Spec:       deps.Items[0].Spec.Template.Spec,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top