Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for fetches (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        data or control dependencies, connected to the associated `tf_executor.fetch`
        op. The order of ops will be preserved. Functions named `main` with no
        `tf.entry_function` attribute will not be pruned, as such graphs/functions may
        have been imported from a V1 TensorFlow graph, where feeds/fetches/targets are
        not provided at certain stages of IR transformation (e.g. pre-placement).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // TODO(jpienaar): Update post removing shape_refinier_.
      if (!specs_.enable_shape_inference) {
        // Refine graph's type given more precise fetch.
        auto fetch = graph.GetFetch();
        bool all_equal = true;
        for (auto it :
             llvm::zip_first(graph.getResults(), fetch.getOperandTypes())) {
          auto rt = std::get<1>(it);
          if (rt == std::get<0>(it).getType()) continue;
          std::get<0>(it).setType(rt);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		counter++
    	}
    	return notify
    }
    
    // fetchKMSStatus fetches KMS-related status information for all instances
    func fetchKMSStatus(ctx context.Context) []madmin.KMS {
    	if GlobalKMS == nil {
    		return []madmin.KMS{}
    	}
    
    	stat, err := GlobalKMS.Status(ctx)
    	if err != nil {
    		kmsLogIf(ctx, err, "failed to fetch KMS status information")
    		return []madmin.KMS{}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. cmd/metrics-v2.go

    		metrics = append(metrics, MetricV2{
    			Description: getMinIOGORoutineCountMD(),
    			Value:       float64(runtime.NumGoroutine()),
    		})
    		return
    	})
    	return mg
    }
    
    // getHistogramMetrics fetches histogram metrics and returns it in a []Metric
    // Note: Typically used in MetricGroup.RegisterRead
    //
    // The last parameter is added for compatibility - if true it lowercases the
    // `api` label values.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      curl_cmd+=("${EXTRA_ADDONS_URL}")
    
      "${curl_cmd[@]}"
    }
    
    # A function that fetches a GCE metadata value and echoes it out.
    # Args:
    #   $1 : URL path after /computeMetadata/v1/ (without heading slash).
    #   $2 : An optional default value to echo out if the fetch fails.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    MatcherAssert() - Constructor for class org.hamcrest.MatcherAssert matches(Object, Description) - Method in class org.hamcrest.core.AllOf matches(Object) - Method in class org.hamcrest.core.AnyOf matches(Object) - Method in class org.hamcrest.core.DescribedAs matches(Object) - Method in class org.hamcrest.core.Is matches(Object) - Method in class org.hamcrest.core.IsAnything matches(Object) - Method in class org.hamcrest.core.IsEqual matches(Object, Description) - Method in class org.hamcrest.core.IsInstanceOf...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    
    		// Fetch current node object
    		node, fetchErr := og.kubeClient.CoreV1().Nodes().Get(context.TODO(), string(nodeName), metav1.GetOptions{})
    		if fetchErr != nil {
    			// On failure, return error. Caller will log and retry.
    			eventErr, detailedErr := volumeToMount.GenerateError("VerifyControllerAttachedVolume failed fetching node from API server", fetchErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // the corresponding parts of a request case-sensitively.
    //
    // A pattern with no method matches every method. A pattern
    // with the method GET matches both GET and HEAD requests.
    // Otherwise, the method must match exactly.
    //
    // A pattern with no host matches every host.
    // A pattern with a host matches URLs on that host only.
    //
    // A path can include wildcard segments of the form {NAME} or {NAME...}.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

            "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`)...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

            "description": "ResourcePolicyRule is a predicate that matches some resource requests, testing the request's verb and the target resource. A ResourcePolicyRule matches a resource request if and only if: (a) at least one member of verbs matches the request, (b) at least one member of apiGroups matches the request, (c) at least one member of resources matches the request, and (d) either (d1) the request does not specify a namespace (i.e., `Namespace==\"\"`)...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
Back to top