Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for SELF (0.2 sec)

  1. src/math/big/int_test.go

    	}
    }
    
    func testBitFunSelf(t *testing.T, msg string, f bitFun, x, y *Int, exp string) {
    	self := new(Int)
    	self.Set(x)
    	expected := new(Int)
    	expected.SetString(exp, 0)
    
    	self = f(self, self, y)
    	if self.Cmp(expected) != 0 {
    		t.Errorf("%s: got %s want %s", msg, self, expected)
    	}
    }
    
    func altBit(x *Int, i int) uint {
    	z := new(Int).Rsh(x, uint(i))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    										"x-kubernetes-validations": []interface{}{
    											map[string]interface{}{
    												"rule":    "self.startsWith('k8s')",
    												"message": "strings must have k8s prefix",
    											},
    											map[string]interface{}{
    												"rule":    "len(self) % 2 == 1",
    												"message": "strings must have odd length",
    											},
    										},
    									},
    								},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    			gp.waitsince = work.tstart
    		}
    
    		// scanstack must be done on the system stack in case
    		// we're trying to scan our own stack.
    		systemstack(func() {
    			// If this is a self-scan, put the user G in
    			// _Gwaiting to prevent self-deadlock. It may
    			// already be in _Gwaiting if this is a mark
    			// worker or we're in mark termination.
    			userG := getg().m.curg
    			selfScan := gp == userG && readgstatus(userG) == _Grunning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    				go func3(c)
    			}
    			// Let goroutines block on channel
    			for j := 0; j < 5; j++ {
    				runtime.Gosched()
    			}
    		}
    	})
    
    	SetGoroutineLabels(WithLabels(context.Background(), Labels("self-label", "self-value")))
    	defer SetGoroutineLabels(context.Background())
    
    	garbage := new(*int)
    	fingReady := make(chan struct{})
    	runtime.SetFinalizer(garbage, func(v **int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    			if err != nil {
    				return nil, fmt.Errorf("unable to generate self signed cert: %w", err)
    			}
    
    			if err := certutil.WriteCert(kc.TLSCertFile, cert); err != nil {
    				return nil, err
    			}
    
    			if err := keyutil.WriteKey(kc.TLSPrivateKeyFile, key); err != nil {
    				return nil, err
    			}
    
    			klog.V(4).InfoS("Using self-signed cert", "TLSCertFile", kc.TLSCertFile, "TLSPrivateKeyFile", kc.TLSPrivateKeyFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	XCOFF_R_BA   = 0x08 // A(sym) Branch absolute. Cannot modify instruction
    	XCOFF_R_RBA  = 0x18 // A(sym) Branch absolute. modifiable instruction
    	XCOFF_R_BR   = 0x0A // A(sym-*) Branch rel to self. non modifiable
    	XCOFF_R_RBR  = 0x1A // A(sym-*) Branch rel to self. modifiable instr
    
    	XCOFF_R_TLS    = 0x20 // General-dynamic reference to TLS symbol
    	XCOFF_R_TLS_IE = 0x21 // Initial-exec reference to TLS symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		// against a set of regexps in comments.
    		ops := t.wantedAsmOpcodes(long)
    		self := runtime.GOOS + "/" + runtime.GOARCH
    		for _, env := range ops.Envs() {
    			// Only run checks relevant to the current GOOS/GOARCH,
    			// to avoid triggering a cross-compile of the runtime.
    			if string(env) != self && !strings.HasPrefix(string(env), self+"/") && !*allCodegen {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    // This means a module which is build has a dependency which has the same
                    // groupId, artifactId, version and classifier coordinates. This is in consequence
                    // a self reference or in other words a circular reference which can not being resolved.
                    addViolation(
                            problems,
                            Severity.FATAL,
                            Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                val contextProvider = ContextCollector.process(
                    firFile,
                    sessionHolder,
                    designation,
                    shouldCollectBodyContext = false, // we only query SELF context
                    filter = { ContextCollector.FilterResponse.CONTINUE }
                )
    
                return FirTowerDataContextProvider(contextProvider)
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top