Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for marking (0.27 sec)

  1. src/go/types/expr.go

    			// constant is what it would be if the shift expression
    			// were replaced by its left operand alone.".
    			//
    			// Delay operand checking until we know the final type
    			// by marking the lhs expression as lhs shift operand.
    			//
    			// Usually (in correct programs), the lhs expression
    			// is in the untyped map. However, it is possible to
    			// create incorrect programs where the same expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (SecurityException e) {
          generateCancellationCauses = false;
        }
        GENERATE_CANCELLATION_CAUSES = generateCancellationCauses;
      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (SecurityException e) {
          generateCancellationCauses = false;
        }
        GENERATE_CANCELLATION_CAUSES = generateCancellationCauses;
      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. src/runtime/mgcscavenge.go

    	s.test = test
    	return s.sysInit(test, sysStat)
    }
    
    // sysGrow updates the index's backing store in response to a heap growth.
    //
    // Returns the amount of memory added to sysStat.
    func (s *scavengeIndex) grow(base, limit uintptr, sysStat *sysMemStat) uintptr {
    	// Update minHeapIdx. Note that even if there's no mapping work to do,
    	// we may still have a new, lower minimum heap address.
    	minHeapIdx := s.minHeapIdx.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// by this interface, supplying values for each of these structures. Core
    /// TensorFlow checks that the plugin supplies all mandatory operations and
    /// then copies these tables to a different memory location, marking the new
    /// operation tables as read-only. Once a plugin is loaded, none of these
    /// operation pointers may change.
    ///
    /// There are 4 function tables: one for each of the 3 file objects in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			testCheckNoMoreResults(t, w)
    		})
    	}
    }
    
    // RunWatchSemanticInitialEventsExtended checks if the bookmark event
    // marking the end of the list stream contains the global RV.
    //
    // note that this scenario differs from the one in RunWatchSemantics
    // by adding the pod to a different ns to advance the global RV
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      if (!should_compile && device_type.type_string() == DEVICE_CPU &&
          global_jit_level_ > OptimizerOptions::OFF) {
        static absl::once_flag once;
        absl::call_once(once, [] {
          LOG(WARNING) << R"((One-time warning): Not using XLA:CPU for cluster.
    
    If you want XLA:CPU, do one of the following:
    
     - set the TF_XLA_FLAGS to include "--tf_xla_cpu_global_jit", or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    			// constant is what it would be if the shift expression
    			// were replaced by its left operand alone.".
    			//
    			// Delay operand checking until we know the final type
    			// by marking the lhs expression as lhs shift operand.
    			//
    			// Usually (in correct programs), the lhs expression
    			// is in the untyped map. However, it is possible to
    			// create incorrect programs where the same expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    // *m.byte&m.mask != 0 indicates the mark bit is set.
    // index can be used along with span information to generate
    // the address of the object in the heap.
    // We maintain one set of mark bits for allocation and one for
    // marking purposes.
    type markBits struct {
    	bytep *uint8
    	mask  uint8
    	index uintptr
    }
    
    //go:nosplit
    func (s *mspan) allocBitsForIndex(allocBitIndex uintptr) markBits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    	// warning groups in clang 4.0+, so ignore unknown pragmas first.
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-pragmas\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wpragmas\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Waddress-of-packed-member\"\n")
    	fmt.Fprintf(fgcc, "#pragma GCC diagnostic ignored \"-Wunknown-warning-option\"\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top