Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 179 for mcall (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

          self, graphdef: graph_pb2.GraphDef
      ) -> bool:
        """Determines if the graph def has quantized function call.
    
        Args:
          graphdef: A GraphDef object.
    
        Returns:
          True if and only if the graph def contains a quantized function call.
        """
        return any(map(self._is_quantized_function, graphdef.library.function))
    
      def _contains_composite_function_call(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			delete(i.allWatchers, scope)
    		}
    	}
    }
    
    func (i *indexedWatchers) terminateAll(groupResource schema.GroupResource, done func(*cacheWatcher)) {
    	// note that we don't have to call setDrainInputBufferLocked method on the watchers
    	// because we take advantage of the default value - stop immediately
    	// also watchers that have had already its draining strategy set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      //
      // Google Test will call Foo::SetUpTestCase() before running the first
      // test in test case Foo.  Hence a sub-class can define its own
      // SetUpTestCase() method to shadow the one defined in the super
      // class.
      static void SetUpTestCase() {}
    
      // Tears down the stuff shared by all tests in this test case.
      //
      // Google Test will call Foo::TearDownTestCase() after running the last
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Timeout for the list/watch call.
    	// This limits the duration of the call, regardless of any activity or inactivity.
    	// +optional
    	TimeoutSeconds *int64 `json:"timeoutSeconds,omitempty" protobuf:"varint,5,opt,name=timeoutSeconds"`
    
    	// limit is a maximum number of responses to return for a list call. If more items exist, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  5. cmd/bucket-handlers.go

    		objects[i] = deleteObjectsReq.Objects[i].ObjectV
    	}
    
    	// Make sure to update context to print ObjectNames for multi objects.
    	ctx = updateReqContext(ctx, objects...)
    
    	// Call checkRequestAuthType to populate ReqInfo.AccessKey before GetBucketInfo()
    	// Ignore errors here to preserve the S3 error behavior of GetBucketInfo()
    	checkRequestAuthType(ctx, r, policy.DeleteObjectAction, bucket, "")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    // containsInlinedCall reports whether the function body for the function f is
    // known to contain an inlined function call within the first maxBytes bytes.
    func containsInlinedCall(f any, maxBytes int) bool {
    	_, found := findInlinedCall(f, maxBytes)
    	return found
    }
    
    // findInlinedCall returns the PC of an inlined function call within
    // the function body for the function f if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string resourceVersionMatch = 10;
    
      // Timeout for the list/watch call.
      // This limits the duration of the call, regardless of any activity or inactivity.
      // +optional
      optional int64 timeoutSeconds = 5;
    
      // limit is a maximum number of responses to return for a list call. If more items exist, the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string resourceVersionMatch = 10;
    
      // Timeout for the list/watch call.
      // This limits the duration of the call, regardless of any activity or inactivity.
      // +optional
      optional int64 timeoutSeconds = 5;
    
      // limit is a maximum number of responses to return for a list call. If more items exist, the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    			scanblock(uintptr(unsafe.Pointer(&fb.fin[0])), cnt*unsafe.Sizeof(fb.fin[0]), &finptrmask[0], gcw, nil)
    		}
    
    	case i == fixedRootFreeGStacks:
    		// Switch to the system stack so we can call
    		// stackfree.
    		systemstack(markrootFreeGStacks)
    
    	case work.baseSpans <= i && i < work.baseStacks:
    		// mark mspan.specials
    		markrootSpans(gcw, int(i-work.baseSpans))
    
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    //	policyFunc    - function to return bucketPolicy statement which would permit the anonymous request to be served.
    //
    // The test works in 2 steps, here is the description of the steps.
    //
    //	STEP 1: Call the handler with the unsigned HTTP request (anonReq), assert for the `ErrAccessDenied` error response.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top