Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for MARK (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    include::sample[dir="snippets/java/basic/kotlin",files="build.gradle.kts[tags=skip-tests-condition]"]
    include::sample[dir="snippets/java/basic/groovy",files="build.gradle[tags=skip-tests-condition]"]
    ====
    
    In this case, Gradle will mark the skipped tests as "SKIPPED" rather than exclude them from the build.
    
    [[sec:forcing_java_tests_to_run]]
    == Forcing tests to run
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    However, if the signature cannot be verified with at least one other key, Gradle will mandate that you provide a checksum.
    
    NOTE: If Gradle cannot download a key while bootstrapping, it will mark it as ignored.
    If you can find the key but Gradle does not, you can <<#sec:add-manual-keyring,manually add it>> to the keyring file.
    
    [[sec:local-keyring]]
    === Exporting keys for faster verification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    	}
    	if err := gState.endRegion(userRegion{tid, name}); err != nil {
    		return curCtx, false, err
    	}
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    // Handle the GC mark phase.
    //
    // We have sequence numbers for both start and end because they
    // can happen on completely different threads. We want an explicit
    // partial order edge between start and end here, otherwise we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    	if e, a := sets.New[string]("3-static"), newUIDSet(podWorkers.workQueue.GetWork()...); !reflect.DeepEqual(e, a) {
    		t.Fatalf("unexpected queued items: %s", cmp.Diff(e, a))
    	}
    
    	// mark 3-static as deleted while 2-static is still running
    	podWorkers.workQueue.GetWork()
    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("3-static", "test1", "pod1", true),
    		UpdateType: kubetypes.SyncPodKill,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    		}
    	})
    }
    
    // tracebackHexdump hexdumps part of stk around frame.sp and frame.fp
    // for debugging purposes. If the address bad is included in the
    // hexdumped range, it will mark it as well.
    func tracebackHexdump(stk stack, frame *stkframe, bad uintptr) {
    	const expand = 32 * goarch.PtrSize
    	const maxExpand = 256 * goarch.PtrSize
    	// Start around frame.sp.
    	lo, hi := frame.sp, frame.sp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    	//	if b.Control != nil && b.Control.Type.IsFlags() {
    	//		flive = true
    	//	}
    	//	for i := len(b.Values) - 1; i >= 0; i-- {
    	//		v := b.Values[i]
    	//		if flive && (v.Op == v.Op == ssa.OpPPC64MOVDconst) {
    	//			// The "mark" is any non-nil Aux value.
    	//			v.Aux = v
    	//		}
    	//		if v.Type.IsFlags() {
    	//			flive = false
    	//		}
    	//		for _, a := range v.Args {
    	//			if a.Type.IsFlags() {
    	//				flive = true
    	//			}
    	//		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    						VersionID: goi.VersionID,
    					}
    				}
    				return goi, ObjectNotFound{
    					Bucket: bucket,
    					Object: object,
    				}
    			}
    		}
    	}
    
    	//  Determine whether to mark object deleted for replication
    	markDelete := goi.VersionID != ""
    
    	// Default deleteMarker to true if object is under versioning
    	deleteMarker := opts.Versioned
    
    	if opts.VersionID != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    			firstFile = name
    		} else if pkg != p.Name {
    			// TODO(#45999): The choice of p.Name is arbitrary based on file iteration
    			// order. Instead of resolving p.Name arbitrarily, we should clear out the
    			// existing name and mark the existing files as also invalid.
    			badGoFile(name, &MultiplePackageError{
    				Dir:      p.Dir,
    				Packages: []string{p.Name, pkg},
    				Files:    []string{firstFile, name},
    			})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    					// goroutine will do O(N^2) work with the number of
    					// goroutines it launches. This should be slow relative to
    					// the work involved in collecting a goroutine profile,
    					// which is O(N) with the high-water mark of the number of
    					// goroutines in this process (in the allgs slice).
    					runtime.Gosched()
    				}
    				if i == 0 {
    					ready.Done()
    				}
    			}
    		}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			class, err := pl.classLister.Get(claim.Spec.ResourceClassName)
    			if err != nil {
    				// If the class cannot be retrieved, allocation cannot proceed.
    				if apierrors.IsNotFound(err) {
    					// Here we mark the pod as "unschedulable", so it'll sleep in
    					// the unscheduleable queue until a ResourceClass event occurs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top