Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for inState (0.57 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

        @Override
        public void populateWorkGraph(BuildWorkPlan plan, Consumer<? super WorkGraphBuilder> action) {
            DefaultBuildWorkPlan workPlan = unpack(plan);
            workPlan.empty = false;
            state.inState(State.TaskSchedule, () -> workPreparer.populateWorkGraph(gradle, workPlan.plan, dest -> action.accept(new DefaultWorkGraphBuilder(dest))));
        }
    
        @Override
        public void finalizeWorkGraph(BuildWorkPlan plan) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s

    	MOVQ rCa, rDu;         \
    	XORQ rCi, rDo;         \
    	ROLQ $1, rDu;          \
    	                       \
    	/* Result b */         \
    	MOVQ _ba(iState), rBa; \
    	MOVQ _ge(iState), rBe; \
    	XORQ rCo, rDu;         \
    	MOVQ _ki(iState), rBi; \
    	MOVQ _mo(iState), rBo; \
    	MOVQ _su(iState), rBu; \
    	XORQ rDe, rBe;         \
    	ROLQ $44, rBe;         \
    	XORQ rDi, rBi;         \
    	XORQ rDa, rBa;         \
    	ROLQ $43, rBi;         \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/index.md

    Usá-lo em seu editor é o que realmente te mostra os benefícios do FastAPI, ver quão pouco código você tem que escrever, todas as conferências de tipo, auto completações etc.
    
    ---
    
    ## Instale o FastAPI
    
    O primeiro passo é instalar o FastAPI.
    
    Para o tutorial, você deve querer instalá-lo com todas as dependências e recursos opicionais.
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. cmd/bucket-listobjects-handlers.go

    	)
    
    	if r.Header.Get(xMinIOExtract) == "true" && strings.Contains(prefix, archivePattern) {
    		// Initiate a list objects operation inside a zip file based in the input params
    		listObjectsV2Info, err = listObjectsV2InArchive(ctx, objectAPI, bucket, prefix, token, delimiter, maxKeys, startAfter, r.Header)
    	} else {
    		// Initiate a list objects operation based on the input params.
    		// On success would return back ListObjectsInfo object to be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/read.go

    	pos := sf.pos + sourceFileNumPlusBuildConstraints
    	n := sf.d.intAt(pos)
    	pos += 4
    	ret := make([]string, n)
    	for i := 0; i < n; i++ {
    		ret[i] = sf.d.stringAt(pos)
    		pos += 4
    	}
    	return ret
    }
    
    func (sf *sourceFile) importsOffset() int {
    	pos := sf.pos + sourceFileNumPlusBuildConstraints
    	n := sf.d.intAt(pos)
    	// each build constraint is 1 uint32
    	return pos + 4 + n*4
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. tests/integration/security/sds_ingress/ingress_test.go

    						PrivateKey: ingressutil.TLSClientKeyB,
    						Cert:       ingressutil.TLSClientCertB,
    					},
    				},
    				// TC3: Add CRL with revoked client Certificate A to the configuration,
    				// and initiate communication from client A.
    				// Server should respond with the "revoked certificate" error message.
    				{
    					name:       "mtls ingress gateway with CRL-client A",
    					secretName: "testmtlsgateway-secret-with-crl-a",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

                return null;
            }
            return super.findByNameWithoutRules(name);
        }
    
        private void realizeTask(ModelPath taskPath, ModelNode.State minState) {
            project.getModelRegistry().atStateOrLater(taskPath, ModelType.of(Task.class), minState);
        }
    
        @Override
        public <U extends Task> NamedDomainObjectContainer<U> containerWithType(Class<U> type) {
            throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. internal/grid/handlers.go

    			if r != rZero {
    				pool.Put(r)
    			}
    		}
    }
    
    // NewSingleHandler creates a typed handler that can provide Marshal/Unmarshal.
    // Use Register to register a server handler.
    // Use Call to initiate a clientside call.
    func NewSingleHandler[Req, Resp RoundTripper](h HandlerID, newReq func() Req, newResp func() Resp) *SingleHandler[Req, Resp] {
    	s := SingleHandler[Req, Resp]{id: h}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. cmd/server_test.go

    	// initiate anonymous HTTP request to fetch the object which does not exist. We need to return AccessDenied.
    	response, err = s.client.Get(getGetObjectURL(s.endPoint, bucketName, objectName+".1"))
    	c.Assert(err, nil)
    	// assert the http response status code.
    	verifyError(c, response, "AccessDenied", "Access Denied.", http.StatusForbidden)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/security/first-steps.md

    ## Crie um `main.py`
    Copie o exemplo em um arquivo `main.py`:
    
    ```Python
    {!../../../docs_src/security/tutorial001.py!}
    ```
    
    ## Execute-o
    
    !!! info "informação"
    	Primeiro, instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    	Ex: `pip install python-multipart`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top