Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 972 for darkred (0.53 sec)

  1. test/fixedbugs/issue40954.go

    	// p is a pointer to a not-in-heap type. Like some C libraries,
    	// we stored an integer in that pointer. That integer just happens
    	// to be the address of i.
    	// v is also the address of i.
    	// p has a base type which is marked not-in-heap, so it
    	// should not be adjusted when the stack is copied.
    	recurse(100, p, v)
    }
    func recurse(n int, p *S, v uintptr) {
    	if n > 0 {
    		recurse(n-1, p, v)
    	}
    	if uintptr(unsafe.Pointer(p)) != v {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 15:27:18 UTC 2022
    - 874 bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/dependencies/MavenDependency.java

         */
        @Nullable
        String getScope();
    
        /**
         * The exclude rules of this dependency.
         */
        Set<ExcludeRule> getExcludeRules();
    
        /**
         * If this dependency is marked optional.
         */
        boolean isOptional();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. internal/config/lambda/target/lazyinit.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package target
    
    import (
    	"sync"
    	"sync/atomic"
    )
    
    // Inspired from Golang sync.Once but it is only marked
    // initialized when the provided function returns nil.
    
    type lazyInit struct {
    	done uint32
    	m    sync.Mutex
    }
    
    func (l *lazyInit) Do(f func() error) error {
    	if atomic.LoadUint32(&l.done) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				if len(vols) == 0 {
    					t.Fatalf("Request resize for volume, but volume in ASW hasn't been marked as fsResizeRequired")
    				}
    				if len(vols) != 1 {
    					t.Errorf("Some unexpected volumes are marked as fsResizeRequired: %v", vols)
    				}
    				if vols[0] != volName {
    					t.Fatalf("Mark wrong volume as fsResizeRequired: %s", vols[0])
    				}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_finished_subtest_goroutines.txt

    			// If the subtest goroutines are going to park on the channel
    			// send, allow them to park now. If they're not going to park,
    			// make sure they have had a chance to run to completion so
    			// that they aren't spuriously parked when we panic.
    			runtime.Gosched()
    		}
    		panic("slow failure")
    	})
    
    	wg.Add(nFast)
    	for i := 0; i < nFast; i++ {
    		t.Run(fmt.Sprintf("leaky%d", i), func(t *testing.T) {
    			t.Parallel()
    			wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 17:34:25 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/AllowUsingApiForExternalUse.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Suppresses the checks done for {@link ForExternalUse}, effectively allowing the code point
     * marked by this annotation to use public API declarations that are meant for external use only in.
     *
     * @see ForExternalUse
     */
    @Retention(RetentionPolicy.CLASS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/metrics/metrics.go

    	// is dependent on readiness probes. This means our granularity is correlated to
    	// the probing interval.
    	startupTime = monitoring.NewGauge(
    		"startup_duration_seconds",
    		"The time from the process starting to being marked ready.",
    	)
    
    	// scrapeErrors records total number of failed scrapes.
    	scrapeErrors = monitoring.NewSum(
    		"scrape_failures_total",
    		"The total number of failed scrapes.",
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    	if volumeNode1ComboState != AttachStateAttached {
    		t.Fatalf("%q/%q volume/node combo is marked %q; expected 'Attached'.", generatedVolumeName1, node1Name, volumeNode1ComboState)
    	}
    
    	volumeNode2ComboState := asw.GetAttachState(generatedVolumeName1, node2Name)
    	if volumeNode2ComboState != AttachStateAttached {
    		t.Fatalf("%q/%q volume/node combo is marked %q; expected 'Attached'.", generatedVolumeName1, node2Name, volumeNode2ComboState)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/init1.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // initialization cycles
    
    package init1
    
    // issue 6683 (marked as WorkingAsIntended)
    
    type T0 struct{}
    
    func (T0) m() int { return y0 }
    
    var x0 = T0{}
    
    var y0 /* ERROR "initialization cycle" */ = x0.m()
    
    type T1 struct{}
    
    func (T1) m() int { return y1 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. pkg/controller/controller_ref_manager_test.go

    			controller.Namespace = metav1.NamespaceDefault
    			controller.UID = types.UID(controllerUID)
    			now := metav1.Now()
    			controller.DeletionTimestamp = &now
    			return test{
    				name: "Controller marked for deletion can not claim pods",
    				manager: NewPodControllerRefManager(&FakePodControl{},
    					&controller,
    					productionLabelSelector,
    					controllerKind,
    					func(ctx context.Context) error { return nil }),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 17:19:26 UTC 2021
    - 10.6K bytes
    - Viewed (0)
Back to top