Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 629 for copiedS (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/pod.go

    		IPByPods:           make(map[types.NamespacedName]string),
    		needResync:         make(map[string]sets.Set[types.NamespacedName]),
    		queueEndpointEvent: queueEndpointEvent,
    	}
    
    	return out
    }
    
    // Copied from kubernetes/kubernetes/pkg/controller/util/endpoint/controller_utils.go
    //
    // shouldPodBeInEndpoints returns true if a specified pod should be in an
    // Endpoints or EndpointSlice resource. Terminating pods are not included.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/text/template/doc.go

    structure as execution proceeds.
    
    The input text for a template is UTF-8-encoded text in any format.
    "Actions"--data evaluations or control structures--are delimited by
    "{{" and "}}"; all text outside actions is copied to the output unchanged.
    
    Once parsed, a template may be executed safely in parallel, although if parallel
    executions share a Writer the output may be interleaved.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. LICENSE

    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.
    
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. security/pkg/k8s/chiron/utils_test.go

    	"istio.io/istio/pkg/test"
    	csrctrl "istio.io/istio/pkg/test/csrctrl/controllers"
    	"istio.io/istio/pkg/test/util/assert"
    	pkiutil "istio.io/istio/security/pkg/pki/util"
    )
    
    const (
    	// exampleCACert copied from samples/certs/ca-cert.pem
    	exampleCACert = `-----BEGIN CERTIFICATE-----
    MIIDnzCCAoegAwIBAgIJAON1ifrBZ2/BMA0GCSqGSIb3DQEBCwUAMIGLMQswCQYD
    VQQGEwJVUzETMBEGA1UECAwKQ2FsaWZvcm5pYTESMBAGA1UEBwwJU3Vubnl2YWxl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Ascii.java

      /**
       * Returns a copy of the input string in which all {@linkplain #isUpperCase(char) uppercase ASCII
       * characters} have been converted to lowercase. All other characters are copied without
       * modification.
       */
      public static String toLowerCase(String string) {
        int length = string.length();
        for (int i = 0; i < length; i++) {
          if (isUpperCase(string.charAt(i))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // CHECK: %[[GRAPH_OUT:.*]] = tf_executor.graph
    // CHECK-NEXT: %[[OUT:.*]], %[[CTL:.*]] = tf_executor.island wraps "tf.PartitionedCall"(%[[ARG]])
    // CHECK-SAME: f = @serving_default
    // Checks that the contents of @NoOp are copied here.
    // CHECK-NEXT: %[[OUT_0:.*]], %[[CTL_0:.*]] = tf_executor.island wraps "tf.Const"()
    // CHECK-SAME: value = dense<"test">
    // CHECK-NEXT: %[[OUT_1:.*]], %[[CTL_1:.*]] = tf_executor.island wraps "tf.Const"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/stream_executor/stream_executor.h

      // copied from the device source to the host destination.
      void (*sync_memcpy_dtoh)(const SP_Device* device, void* host_dst,
                               const SP_DeviceMemoryBase* device_src, uint64_t size,
                               TF_Status* status);
    
      // Blocks the caller while a data segment of the given size is
      // copied from the host source to the device destination.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  8. LICENSE

    the work, and under which the third party grants, to any of the
    parties who would receive the covered work from you, a discriminatory
    patent license (a) in connection with copies of the covered work
    conveyed by you (or copies made from those copies), or (b) primarily
    for and in connection with specific products or compilations that
    contain the covered work, unless you entered into that arrangement,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  9. src/runtime/mbarrier.go

    // deletion barrier. See profbuf.go for a detailed argument. If we
    // remove the deletion barrier, we'll have to work out a new way to
    // handle the profile logging.
    
    // typedmemmove copies a value of type typ to dst from src.
    // Must be nosplit, see #16026.
    //
    // TODO: Perfect for go:nosplitrec since we can't have a safe point
    // anywhere in the bulk barrier or memmove.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            StartParameter parameter = new StartParameter()
    
            // Copied properties
            parameter.gradleUserHomeDir = new File("home")
            parameter.logLevel = LogLevel.DEBUG
            parameter.consoleOutput = ConsoleOutput.Plain
            parameter.configureOnDemand = true
            parameter.systemPropertiesArgs.put("testprop", "foo")
    
            // Non-copied
            parameter.currentDir = new File("other")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top