Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,973 for gsed (0.11 sec)

  1. hack/lib/util.sh

        SED="sed"
      elif command -v gsed &>/dev/null; then
        SED="gsed"
      else
        kube::log::error "Failed to find GNU sed as sed or gsed. If you are on Mac: brew install gnu-sed." >&2
        return 1
      fi
      kube::util::sourced_variable "${SED}"
    }
    
    # kube::util::ensure-gnu-date
    # Determines which date binary is gnu-date on linux/darwin
    #
    # Sets:
    #  DATE: The name of the gnu-date binary
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. Makefile.core.mk

    	sed -e '1 i {{- if .Values.global.configCluster }}' -e '$$ a {{- end }}' manifests/charts/istio-control/istio-discovery/templates/validatingadmissionpolicy.yaml > manifests/charts/istiod-remote/templates/validatingadmissionpolicy.yaml
    	sed -e '1 i {{- if .Values.global.configCluster }}' -e '$$ a {{- end }}' manifests/charts/base/templates/default.yaml > manifests/charts/istiod-remote/templates/default.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. common/scripts/kind_provisioner.sh

    }
    
    # setup_kind_cluster creates new KinD cluster with given name, image and configuration
    # 1. NAME: Name of the Kind cluster (optional)
    # 2. IMAGE: Node image used by KinD (optional)
    # 3. CONFIG: KinD cluster configuration YAML file. If not specified then DEFAULT_CLUSTER_YAML is used
    # 4. NOMETALBINSTALL: Dont install matllb if set.
    # This function returns 0 when everything goes well, or 1 otherwise
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/aot/tests/BUILD

        cmd = "CUDA_VISIBLE_DEVICES='' " +
              "$(location :make_test_graphs) --out_dir $(@D)",
        tags = ["manual"],
        tools = [":make_test_graphs"],
    )
    
    # This list is used to run tf_compile on the compiled graphs used by
    # tfcompile_test. The test is run for several different configurations of
    # tf_compile, so this allows the configurations to be specified in one place.
    # suffix, mlir_component
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                md5.update(clientChallenge, 0, 8);
                System.arraycopy(md5.digest(), 0, sessionHash, 0, 8);
            } catch (GeneralSecurityException gse) {
                if (log.level > 0)
                    gse.printStackTrace(log);
                throw new RuntimeException("MD5", gse);
            }
    
            byte[] key = new byte[21];
            System.arraycopy(nTOWFv1, 0, key, 0, 16);
            byte[] ntResponse = new byte[24];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    #       Gradle is a meta-build system used by the project that you're building
    #       or installing. It's like autoconf but for projects that are written in
    #       Java and related languages. It's also used to build parts of the Gradle
    #       project itself.
    #
    #       The Groovy template language is run in two phases.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/pcln.go

    //
    //	sym = valfunc(func, p, 0, arg);
    //	record sym.P as value at p->pc;
    //	sym = valfunc(func, p, 1, arg);
    //
    // where func is the function, val is the current value, p is the instruction being
    // considered, and arg can be used to further parameterize valfunc.
    func funcpctab(ctxt *Link, func_ *LSym, desc string, valfunc func(*Link, *LSym, int32, *Prog, int32, interface{}) int32, arg interface{}) *LSym {
    	dbg := desc == ctxt.Debugpcln
    	dst := []byte{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio_test.go

    		},
    		{
    			// Node1 scores (used resources) on 0-MaxNodeScore scale
    			// Node1 Score:
    			// rawScoringFunction(used + requested / available)
    			// resourceScoringFunction((0+2),8)
    			//  = 2/8 * maxUtilization = 25 = rawScoringFunction(25)
    			// Node1 Score: 2
    			// Node2 scores (used resources) on 0-MaxNodeScore scale
    			// rawScoringFunction(used + requested / available)
    			// resourceScoringFunction((0+2),4)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/StreamByteBuffer.java

            }
    
            public void clear() {
                used = pointer = 0;
            }
    
            public byte[] readBuffer() {
                if (used == buffer.length && pointer == 0) {
                    pointer = used;
                    return buffer;
                } else if (pointer < used) {
                    byte[] buf = new byte[used - pointer];
                    read(buf, 0, used - pointer);
                    return buf;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tfcompile.bzl

                "@local_xla//xla/service/cpu:runtime_single_threaded_matmul",
                "@eigen_archive//:eigen3",
            ] or []) + (deps or []),
            tags = tags,
            copts = copts,
        )
    
        # Variables used for gen_test and gen_benchmark.
        cpp_class_split = cpp_class.rsplit("::", 2)
        if len(cpp_class_split) == 1:
            no_ns_name = cpp_class_split[0]
        else:
            no_ns_name = cpp_class_split[1]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top