Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for notsan (0.28 sec)

  1. samples/security/spire/spire-quickstart.yaml

                                a set of values. Valid operators are In, NotIn, Exists
                                and DoesNotExist.
                              type: string
                            values:
                              description: values is an array of string values. If the
                                operator is In or NotIn, the values array must be non-empty.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    							  message: "gotta be baz"
    			`),
    			oldObj: mustUnstructured(`
    				- key: foo
    				  value: notbaz
    				- key: bar
    				  value: notbaz
    			`),
    			newObj: mustUnstructured(`
    				- key: foo
    				  value: notbaz
    				- key: bar
    				  value: notbaz
    				- key: baz
    				  value: baz
    			`),
    			warnings: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    		}
    	}
    	h.allspans = h.allspans[:len(h.allspans)+1]
    	h.allspans[len(h.allspans)-1] = s
    }
    
    // A spanClass represents the size class and noscan-ness of a span.
    //
    // Each size class has a noscan spanClass and a scan spanClass. The
    // noscan spanClass contains only noscan objects, which do not contain
    // pointers and thus do not need to be scanned by the garbage
    // collector.
    type spanClass uint8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/runtime/mwbbuf.go

    		// Mark span.
    		arena, pageIdx, pageMask := pageIndexOf(span.base())
    		if arena.pageMarks[pageIdx]&pageMask == 0 {
    			atomic.Or8(&arena.pageMarks[pageIdx], pageMask)
    		}
    
    		if span.spanclass.noscan() {
    			gcw.bytesMarked += uint64(span.elemsize)
    			continue
    		}
    		ptrs[pos] = obj
    		pos++
    	}
    
    	// Enqueue the greyed objects.
    	gcw.putBatch(ptrs[:pos])
    
    	pp.wbBuf.reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/internal/trace/event.go

    	Value Value
    }
    
    // TaskID is the internal ID of a task used to disambiguate tasks (even if they
    // are of the same type).
    type TaskID uint64
    
    const (
    	// NoTask indicates the lack of a task.
    	NoTask = TaskID(^uint64(0))
    
    	// BackgroundTask is the global task that events are attached to if there was
    	// no other task in the context at the point the event was emitted.
    	BackgroundTask = TaskID(0)
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. src/runtime/arena.go

    //
    // The sweeper handles moving chunks out of this quarantine state to be ready for
    // reuse. When the chunk is placed into the quarantine state, its corresponding
    // span is marked as noscan so that the GC doesn't try to scan memory that would
    // cause a fault.
    //
    // At the next layer are the user arenas themselves. They consist of a single
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

        1.0,
        Math.PI,
        (double) Integer.MAX_VALUE,
        (double) Long.MAX_VALUE,
        Double.MAX_VALUE,
        Double.POSITIVE_INFINITY,
        Double.NaN,
        Float.MAX_VALUE,
      };
    
      /** The notion of equality used by AtomicDoubleArray */
      static boolean bitEquals(double x, double y) {
        return Double.doubleToRawLongBits(x) == Double.doubleToRawLongBits(y);
      }
    
      static void assertBitEquals(double x, double y) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // need to be for resource versions > 0 or the underlying
    // implementation of Store, if resource version = 0.
    //
    // Furthermore, an interval can be either valid or invalid at
    // any given point of time. The notion of validity makes sense
    // only in cases where the window of events in the underlying
    // source can change over time - i.e. for watchCache circular
    // buffer. When the circular buffer is full and an event needs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. .space/CODEOWNERS

    # OWNER_LIST: Zalim.Bashorov
    # OWNER_LIST: Ilya.Goncharov Artem.Kobzar
    # OWNER_LIST: Simon.Ogorodnik Stanislav.Erokhin
    # OWNER_LIST: Alexander.Shabalin Aleksei.Glushko Sergey.Bogolepov Svyatoslav.Scherbina
    # OWNER_LIST: Brian.Norman
    # OWNER_LIST: Sergej.Jaskiewicz
    # OWNER_LIST: Wojciech.Litewka
    # Kotlin Libraries
    # OWNER_LIST: A.Qurbonzoda Vsevolod.Tolstopyato Ilya.Gorbunov Sergey.Shanshin Leonid.Startsev Filipp.Zhinkin
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  10. tensorflow/compiler/jit/BUILD

            "rearrange_function_argument_pass_test.cc",
        ],
        tags = [
            # TODO(b/141643254) Re-enable msan after fixing
            # use-of-uninitialized-value error.
            "nomsan",
        ] + tf_cuda_tests_tags(),
        deps = [
            ":common",
            ":compilability_check_util",
            ":compilation_passes",
            ":compilation_passes_test_main",
            ":encapsulate_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
Back to top