Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 361 for withZip (0.12 sec)

  1. src/internal/trace/raw/doc.go

    The first special case consists of events with trailing byte-oriented data.
    The trailer begins on the following line from the event. That line consists
    of a single argument 'data' and a Go-quoted string representing the byte data
    within. Note: an explicit argument for the length is elided, because it's
    just the length of the unquoted string.
    
    For example:
    
    	String id=5
    		data="hello world\x00"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests a G being created from within a syscall.
    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). The system is free
    // to reuse thread IDs, so first a thread ID is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemSpec.java

        /**
         * Declares that this problem was emitted by a task with the given path.
         *
         * @param buildTreePath the absolute path of the task within the build tree
         * @return this
         */
        InternalProblemSpec taskPathLocation(String buildTreePath);
    
        /**
         * Declares the documentation for this problem.
         *
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/TestThread.java

        assertEquals(expected, getResponse(methodName).getResult());
      }
    
      /**
       * Sends the given method call to this thread.
       *
       * @throws TimeoutException if this thread does not accept the request within a reasonable amount
       *     of time
       */
      private void sendRequest(String methodName, Object... arguments) throws Exception {
        if (!requestQueue.offer(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2/types.go

    }
    
    // APIVersionDiscovery holds a list of APIResourceDiscovery types that are served for a particular version within an API Group.
    type APIVersionDiscovery struct {
    	// version is the name of the version within a group version.
    	Version string `json:"version" protobuf:"bytes,1,opt,name=version"`
    	// resources is a list of APIResourceDiscovery objects for the corresponding group version.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters.go

    )
    
    // EndpointsByNetworkFilter is a network filter function to support Split Horizon EDS - filter the endpoints based on the network
    // of the connected sidecar. The filter will filter out all endpoints which are not present within the
    // sidecar network and add a gateway endpoint to remote networks that have endpoints
    // (if gateway exists and its IP is an IP and not a dns name).
    // Information for the mesh networks is provided as a MeshNetwork config map.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pilot/pkg/features/experimental.go

    		"ENABLE_MCS_SERVICE_DISCOVERY",
    		false,
    		"If enabled, istiod will enable Kubernetes Multi-Cluster "+
    			"Services (MCS) service discovery mode. In this mode, service "+
    			"endpoints in a cluster will only be discoverable within the "+
    			"same cluster unless explicitly exported via ServiceExport.").Get()
    
    	EnableMCSHost = env.Register(
    		"ENABLE_MCS_HOST",
    		false,
    		"If enabled, istiod will configure a Kubernetes Multi-Cluster "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/config/types.go

    	// should not be used for anything other than testing or development.
    	EnableHostPathProvisioning bool
    	// enableDynamicProvisioning enables the provisioning of volumes when running within an environment
    	// that supports dynamic provisioning. Defaults to true.
    	EnableDynamicProvisioning bool
    	// persistentVolumeRecyclerConfiguration holds configuration for persistent volume plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

    // failure.
    template <typename OpT>
    LogicalResult GetOp(Region* region, OpT* result) {
      *result = {};
      for (auto op : region->getOps<OpT>()) {
        if (*result) return op.emitError("should be unique within a function");
        *result = op;
      }
      return success();
    }
    
    LogicalResult RunOnRegion(Region* region) {
      RecvTPUEmbeddingActivationsOp recv_op;
      if (failed(GetOp(region, &recv_op))) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/unsafe/unsafe.go

    // It is the same as the value returned by [reflect.TypeOf](x).Align().
    // As a special case, if a variable s is of struct type and f is a field
    // within that struct, then Alignof(s.f) will return the required alignment
    // of a field of that type within a struct. This case is the same as the
    // value returned by [reflect.TypeOf](s.f).FieldAlign().
    // The return value of Alignof is a Go constant if the type of the argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top