Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 202 for Grappler (0.22 sec)

  1. src/internal/reflectlite/type.go

    // The (*rtype).nameOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
    
    // resolveTypeOff resolves an *rtype offset from a base type.
    // The (*rtype).typeOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

        }
    
        public boolean equals(Object o) {
          return value.equals(o);
        }
    
        public int hashCode() {
          return value.hashCode();
        }
      }
    
      /**
       * LocalManualCache is a wrapper around LocalCache for a cache without loading.
       *
       * @param <K> the base key type
       * @param <V> the base value type
       */
      public static class LocalManualCache<K, V> extends AbstractCache<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/runtime/race.go

    			if sf.funcID == abi.FuncIDWrapper && u.isInlined(uf) {
    				// Ignore wrappers, unless we're at the outermost frame of u.
    				// A non-inlined wrapper frame always means we have a physical
    				// frame consisting entirely of wrappers, in which case we'll
    				// take an outermost wrapper over nothing.
    				continue
    			}
    
    			name := sf.name()
    			file, line := u.fileLine(uf)
    			if line == 0 {
    				// Failure to symbolize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. cmd/post-policy_test.go

    	retStr := "{"
    	retStr = retStr + expirationStr + ","
    	retStr += conditionStr
    	retStr += "}"
    
    	return []byte(retStr)
    }
    
    // Wrapper
    func TestPostPolicyReservedBucketExploit(t *testing.T) {
    	ExecObjectLayerTestWithDirs(t, testPostPolicyReservedBucketExploit)
    }
    
    // testPostPolicyReservedBucketExploit is a test for the exploit fixed in PR
    // #16849
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        // do not attempt to find projects when the plugin is applied just to generate accessors
        if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "enterprise-plugin-performance" && project.name != "test" /* remove once wrapper is updated */) {
            dependencies {
                "${prefix}TestRuntimeOnly"(project.the<ExternalModulesExtension>().junit5Vintage)
                "${prefix}TestImplementation"(project(":internal-integ-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/net/http/client.go

    // value's Timeout method will report true if the request timed out.
    //
    // When err is nil, resp always contains a non-nil resp.Body.
    // Caller should close resp.Body when done reading from it.
    //
    // Get is a wrapper around DefaultClient.Get.
    //
    // To make a request with custom headers, use [NewRequest] and
    // DefaultClient.Do.
    //
    // To make a request with a specified context.Context, use [NewRequestWithContext]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. src/text/template/exec.go

    	}
    	panic(ExecError{
    		Name: s.tmpl.Name(),
    		Err:  fmt.Errorf(format, args...),
    	})
    }
    
    // writeError is the wrapper type used internally when Execute has an
    // error writing to its output. We strip the wrapper in errRecover.
    // Note that this is not an implementation of error, so it cannot escape
    // from the package as an error value.
    type writeError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    """Defines a wrapper class for overridden python method definitions."""
    
    from collections.abc import Callable, Collection, Mapping, Sequence
    import functools
    import traceback
    from typing import Optional, TypeVar
    
    from absl import logging
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. src/net/net.go

    	// A zero value for t means WriteTo will not time out.
    	SetWriteDeadline(t time.Time) error
    }
    
    var listenerBacklogCache struct {
    	sync.Once
    	val int
    }
    
    // listenerBacklog is a caching wrapper around maxListenerBacklog.
    //
    // listenerBacklog should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/types.go

    		{Event: ClusterEvent{Resource: ResourceClaimParameters, ActionType: All}},
    		{Event: ClusterEvent{Resource: ResourceClassParameters, ActionType: All}},
    	}
    }
    
    // QueuedPodInfo is a Pod wrapper with additional information related to
    // the pod's status in the scheduling queue, such as the timestamp when
    // it's added to the queue.
    type QueuedPodInfo struct {
    	*PodInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
Back to top