Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 97 for pawn (0.04 sec)

  1. docs/fa/docs/index.md

    ---
    
    <div style="text-align: left; direction: ltr;">"We adopted the <strong>FastAPI</strong> library to spawn a <strong>REST</strong>server that can be queried to obtain <strong>predictions</strong>. [for Ludwig]"</div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. src/syscall/exec_linux_test.go

    		if os.IsNotExist(err) || os.IsPermission(err) {
    			t.Skip(err)
    		}
    		t.Fatal(err)
    	}
    
    	// Expect a single line like this:
    	// 0::/user.slice/user-1000.slice/******@****.***e/app.slice/vte-spawn-891992a2-efbb-4f28-aedb-b24f9e706770.scope
    	// Otherwise it's either cgroup v1 or a hybrid hierarchy.
    	if bytes.Count(selfCg, []byte("\n")) > 1 {
    		t.Skip("cgroup v2 not available")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	}
    
    	obj, err := p.fieldManager.Apply(obj, patchObj, p.options.FieldManager, force)
    	if err != nil {
    		return obj, err
    	}
    
    	// TODO: spawn something to track deciding whether a fieldValidation=Strict
    	// fatal error should return before an error from the apply operation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. cmd/admin-heal-ops.go

    	if globalIsDistErasure {
    		clientToken = fmt.Sprintf("%s:%d", h.clientToken, GetProxyEndpointLocalIndex(globalProxyEndpoints))
    	}
    
    	if h.clientToken == bgHealingUUID {
    		// For background heal do nothing, do not spawn an unnecessary goroutine.
    	} else {
    		// Launch top-level background heal go-routine
    		go h.healSequenceStart(objAPI)
    	}
    
    	b, err := json.Marshal(madmin.HealStartSuccess{
    		ClientToken:   clientToken,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. README.md

    ---
    
    "_We adopted the **FastAPI** library to spawn a **REST** server that can be queried to obtain **predictions**. [for Ludwig]_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/runtime/proc_test.go

    				laddr = "127.0.0.1:0"
    			}
    			ln, err := net.Listen("tcp", laddr)
    			if err != nil {
    				defer ln.Close() // yup, defer in a loop
    			}
    		}
    		done := make(chan bool)
    		x := uint32(0)
    		// Spawn P goroutines in a nested fashion just to differ from TestGoroutineParallelism.
    		for p := 0; p < P/2; p++ {
    			go func(p int) {
    				for p2 := 0; p2 < 2; p2++ {
    					go func(p2 int) {
    						for i := 0; i < 3; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="org.spire-math" name="jawn-parser_2.12" version="0.10.4">
             <artifact name="jawn-parser_2.12-0.10.4.jar">
                <pgp value="8B16E798477BE6DC10127D11AA6917FA45E67F20"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject_test.go

    							hasExpectedLog = true
    							break
    						}
    					}
    					if !hasExpectedLog {
    						t.Fatal("expected log but got none")
    					}
    				}
    
    				// The version string is a maintenance pain for this test. Strip the version string before comparing.
    				gotBytes := util.StripVersion(got.Bytes())
    				wantBytes := util.ReadGoldenFile(t, gotBytes, wantFilePath)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug_test.go

    		// It also sometimes requires an admin password typed into a dialog box.
    		// Various architectures tend to differ slightly sometimes, and keeping them
    		// all in sync is a pain for people who don't have them all at hand,
    		// so limit testing to amd64 (for now)
    		skipReasons += "not run when testing gdb (-g) unless forced (-f) or linux-amd64; "
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	oldTransformTracker := d.transformTracker.Swap(newTransformTracker).(*transformTracker)
    
    	// close old transformers once we wait for grpc request to finish any in-flight requests.
    	// by the time we spawn this go routine, the new transformers have already been set and will be used for new requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top