Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 164 for envMap (0.13 sec)

  1. 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)
  2. 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)
  3. pkg/api/pod/warnings_test.go

    				InitContainers: []api.Container{{Env: []api.EnvVar{
    					{Name: "a", Value: "a"},
    					{Name: "a", Value: "a"},
    					{Name: "a", Value: "other"},
    					{Name: "a", Value: ""},
    					{Name: "a", Value: "$(a)"},
    					{Name: "a", ValueFrom: &api.EnvVarSource{}},
    					{Name: "a", Value: "$(a) $(a)"}, // no warning
    				}}},
    				Containers: []api.Container{{Env: []api.EnvVar{
    					{Name: "b", Value: "b"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kube/inject/webhook.go

    // then probers should be merged.
    func mergeOrAppendProbers(previouslyInjected bool, envVars []corev1.EnvVar, newProbers string) []corev1.EnvVar {
    	if !previouslyInjected {
    		return append(envVars, corev1.EnvVar{Name: status.KubeAppProberEnvName, Value: newProbers})
    	}
    	for idx, env := range envVars {
    		if env.Name == status.KubeAppProberEnvName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin_test.go

    	pod, ns := buildFakePodAndNSForClient()
    	pod.ObjectMeta.Annotations[sidecarStatusKey] = "true"
    	pod.Spec.Containers = append(pod.Spec.Containers, corev1.Container{
    		Name: "istio-init",
    		Env:  []corev1.EnvVar{{Name: "DISABLE_ENVOY", Value: "true"}},
    	})
    
    	mockIntercept := testDoAddRun(t, buildMockConf(true, ""), testNSName, pod, ns)
    
    	if len(mockIntercept.lastRedirect) != 0 {
    		t.Fatalf("failed to exclude pod")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    			if ret, err := strconv.ParseBool(avoidNoopTimestampUpdatesString); err == nil && !ret {
    				// leave avoidTimestampEqualities empty.
    				return
    			} else {
    				klog.Errorf("failed to parse envar KUBE_APISERVER_AVOID_NOOP_SSA_TIMESTAMP_UPDATES: %v", err)
    			}
    		}
    
    		var eqs = equality.Semantic.Copy()
    		err := eqs.AddFunc(
    			func(a, b metav1.ManagedFieldsEntry) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/internal/testenv/testenv.go

    	}
    	// Add all environment variables that affect the Go command to test metadata.
    	// Cached test results will be invalidate when these variables change.
    	// See golang.org/issue/32285.
    	for _, envVar := range strings.Fields(cfg.KnownEnv) {
    		os.Getenv(envVar)
    	}
    	return path
    }
    
    var (
    	gorootOnce sync.Once
    	gorootPath string
    	gorootErr  error
    )
    
    func findGOROOT() (string, error) {
    	gorootOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top