Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for unwrapped (0.27 sec)

  1. src/runtime/traceback.go

    // function id should be elided from stack traces.
    func elideWrapperCalling(id abi.FuncID) bool {
    	// If the wrapper called a panic function instead of the
    	// wrapped function, we want to include it in stacks.
    	return !(id == abi.FuncID_gopanic || id == abi.FuncID_sigpanic || id == abi.FuncID_panicwrap)
    }
    
    var gStatusStrings = [...]string{
    	_Gidle:      "idle",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // POSIX functions.  These wrappers hide the differences between
    // Windows/MSVC and POSIX systems.  Since some compilers define these
    // standard functions as macros, the wrapper cannot have the same name
    // as the wrapped function.
    
    namespace posix {
    
    // Functions with a different name on Windows.
    
    #if GTEST_OS_WINDOWS
    
    typedef struct _stat StatStruct;
    
    # ifdef __BORLANDC__
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    }
    
    
    def TF_ConvertToSparseCoreCsrWrappedCooTensorOp : TF_Op<"ConvertToSparseCoreCsrWrappedCooTensorOp", [Pure, SameVariadicOperandSize]> {
      let summary = "An op which converts the sorted coo tensor into sparse core CSR wrapped COO format.";
    
      let arguments = (ins
        Variadic<TF_Int32Tensor>:$sorted_row_ids_list,
        Variadic<TF_Int32Tensor>:$sorted_col_ids_list,
        Variadic<TF_Float32Tensor>:$sorted_gains_list,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

       * serializable.
       *
       * <p><b>Java 8+ users and later:</b> Prefer {@link Collections#synchronizedNavigableSet}.
       *
       * @param navigableSet the navigable set to be "wrapped" in a synchronized navigable set.
       * @return a synchronized view of the specified navigable set.
       * @since 13.0
       */
      @GwtIncompatible // NavigableSet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    	}
    
    	return &sendFileReader{Reader: io.LimitReader(file, length), Closer: file}, nil
    }
    
    // closeWrapper converts a function to an io.Closer
    type closeWrapper func() error
    
    // Close calls the wrapped function.
    func (c closeWrapper) Close() error {
    	return c()
    }
    
    // CreateFile - creates the file.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		store:      store,
    		nextObject: nextPod,
    	}
    
    	revertTransformer := store.UpdatePrefixTransformer(
    		func(previousTransformer *PrefixTransformer) value.Transformer {
    			transformer.wrapped = previousTransformer
    			return transformer
    		})
    	defer revertTransformer()
    
    	for i := 0; i < 5; i++ {
    		if err := transformer.createObject(ctx); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    			// so do not pass any arguments (but we strip symbols below).
    		} else {
    			argv = append(argv, "-s")
    		}
    	}
    
    	// On darwin, whether to combine DWARF into executable.
    	// Only macOS supports unmapped segments such as our __DWARF segment.
    	combineDwarf := ctxt.IsDarwin() && !*FlagW && machoPlatform == PLATFORM_MACOS
    
    	switch ctxt.HeadType {
    	case objabi.Hdarwin:
    		if combineDwarf {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Those methods should never be directly implemented.
    
    ==== Wrapper task configuration
    If `gradle-wrapper.properties` contains the `distributionSha256Sum` property, you must specify a sum.
    You can specify a sum in the wrapped task configuration or with the `--gradle-distribution-sha256-sum` task option.
    
    ==== Changes in the AbstractCodeQualityPlugin class
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    		// ABI wrapper usually wraps an assembly symbol, a linknamed symbol,
    		// or an external symbol, or provide access of a Go symbol to assembly.
    		// For now, allow ABI wrappers.
    		// TODO: check the wrapped symbol?
    		return
    	}
    	error()
    }
    
    // TopLevelSym tests a symbol (by name and kind) to determine whether
    // the symbol first class sym (participating in the link) or is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top