Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 654 for envs (0.03 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    			as.ElementsMatch(tc.expected.Annotations, opts.Annotations)
    			as.ElementsMatch(tc.expected.CDIDevices, opts.CDIDevices)
    			as.ElementsMatch(tc.expected.Devices, opts.Devices)
    			as.ElementsMatch(tc.expected.Envs, opts.Envs)
    			as.ElementsMatch(tc.expected.Mounts, opts.Mounts)
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. ci/official/envs/linux_arm64_onednn

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/linux_arm64
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 19:26:00 UTC 2024
    - 810 bytes
    - Viewed (0)
  3. ci/official/bisect.sh

    #   TF_BISECT_SCRIPT: The build script path relative to the TF root dir, e.g.
    #     ci/official/wheel.sh
    #   TFCI: The env config path, relative to the TF root dir, e.g.
    #     ci/official/envs/an_env_config
    #
    # Note that you can combine bisect.sh with any.sh to bisect a single test:
    #
    #   export TFCI=...
    #   export TF_BISECT_SCRIPT=ci/official/any.sh
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. ci/official/envs/linux_arm64_cross_compile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/linux_arm64
    TFCI_BAZEL_COMMON_ARGS="--repo_env=TF_PYTHON_VERSION=$TFCI_PYTHON_VERSION --config  cross_compile_linux_arm64"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 904 bytes
    - Viewed (0)
  5. pkg/bootstrap/config.go

    		}
    	}
    
    	extractMetadata(options.Envs, IstioMetaPrefix, func(m map[string]any, key string, val string) {
    		m[key] = val
    	}, untypedMeta)
    
    	extractMetadata(options.Envs, IstioMetaJSONPrefix, func(m map[string]any, key string, val string) {
    		err := json.Unmarshal([]byte(val), &m)
    		if err != nil {
    			log.Warnf("Env variable %s [%s] failed json unmarshal: %v", key, val, err)
    		}
    	}, untypedMeta)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/resources/org/gradle/plugins/ide/idea/model/defaultWorkspace.xml

          <option name="ENABLE_SWING_INSPECTOR" value="false" />
          <option name="ENV_VARIABLES" />
          <option name="PASS_PARENT_ENVS" value="true" />
          <module name="" />
          <envs />
          <method>
            <option name="BuildArtifacts" enabled="false" />
            <option name="Make" enabled="true" />
          </method>
        </configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. cluster/gce/upgrade-aliases.sh

      exit 1
    fi
    echo "k8s cluster sits on subnetwork \"${IP_ALIAS_SUBNETWORK}\""
    
    set-allow-subnet-cidr-routes-overlap true
    add-k8s-subnet-secondary-ranges
    
    echo "Changing K8s master envs and restarting..."
    export KUBE_GCE_IP_ALIAS_SUBNETWORK=${IP_ALIAS_SUBNETWORK}
    export KUBE_GCE_NODE_IPAM_MODE="IPAMFromCluster"
    export KUBE_GCE_ENABLE_IP_ALIASES=true
    export SECONDARY_RANGE_NAME="pods-default"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. ci/official/envs/macos_x86_cross_compile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    source ci/official/envs/macos_x86
    TFCI_BAZEL_COMMON_ARGS="--repo_env=TF_PYTHON_VERSION=$TFCI_PYTHON_VERSION  --config cross_compile_macos_x86"
    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=cross_compile_macos_x86
    TFCI_MACOS_CROSS_COMPILE_ENABLE=1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 23:38:12 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. hack/make-rules/test-e2e-node.sh

        --ssh-user="${ssh_user}" --ssh-key="${ssh_key}" --ssh-options="${ssh_options}" \
        --image-config-dir="${image_config_dir}" --node-env="${node_env}" \
        --use-dockerized-build="${use_dockerized_build}" --instance-type="${instance_type}" \
        --target-build-arch="${target_build_arch}" \
        --extra-envs="${extra_envs}" --kubelet-config-file="${kubelet_config_file}"  --test-suite="${test_suite}" \
        "${timeout_arg}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. ci/official/utilities/setup.sh

      # Source the default ci values
      source ./ci/official/envs/ci_default
    
      # TODO(angerson) write this documentation
      # Sources every env, in order, from the comma-separated list "TFCI"
      # Assumes variables will resolve themselves correctly.
      set +u
      for env_file in ${TFCI//,/ }; do
        source "./ci/official/envs/$env_file"
      done
      set -u
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 26 00:33:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top