Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for pawn (0.08 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. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        core_tpu_ops.insert(&op);
      }
    
      GatherOpsForExtraction(&core_tpu_ops, merged_set, /*predecessors=*/true,
                             /*successors=*/true);
    
      // TODO(patn): Verify that all the ops here fall between the forward pass
      // and backward pass ops (i.e., not before the forward pass or after the
      // backward pass).
      return LogicalResult::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	if s.UnprotectedDebugSocket != nil {
    		go func() {
    			defer utilruntime.HandleCrash()
    			klog.Error(s.UnprotectedDebugSocket.Run(stopCh))
    		}()
    	}
    
    	// spawn a new goroutine for closing the MuxAndDiscoveryComplete signal
    	// registration happens during construction of the generic api server
    	// the last server in the chain aggregates signals from the previous instances
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top