Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Sincos (0.17 sec)

  1. docs/pt/docs/tutorial/extra-data-types.md

    ## Outros tipos de dados
    
    Aqui estão alguns dos tipos de dados adicionais que você pode usar:
    
    * `UUID`:
        * Um "Identificador Universalmente Único" padrão, comumente usado como ID em muitos bancos de dados e sistemas.
        * Em requisições e respostas será representado como uma `str`.
    * `datetime.datetime`:
        * O `datetime.datetime` do Python.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                    merge(artifact, infos, v, repository);
                }
    
                if (RELEASE.equals(version)) {
                    resolve(result, infos, RELEASE);
                } else if (LATEST.equals(version)) {
                    if (!resolve(result, infos, LATEST)) {
                        resolve(result, infos, RELEASE);
                    }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java

            bufferIndex += 4;
    
            // bufferIndex = bufferOffset;
    
            List<FileEntry> infos = new ArrayList<>();
            do {
                FileBothDirectoryInfo cur = createFileInfo();
                if ( cur == null ) {
                    break;
                }
                cur.decode(buffer, bufferIndex, bufferLength);
                infos.add(cur);
                int nextEntryOffset = cur.getNextEntryOffset();
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  4. cmd/bucket-replication-utils_test.go

    func TestReplicatedInfos(t *testing.T) {
    	for i, test := range replicatedInfosTests {
    		rinfos := replicatedInfos{
    			Targets: test.tgtInfos,
    		}
    		if actualSize := rinfos.CompletedSize(); actualSize != test.expectedCompletedSize {
    			t.Errorf("Test%d (%s): Size  got %d , want %d", i+1, test.name, actualSize, test.expectedCompletedSize)
    		}
    		if repStatusStr := rinfos.ReplicationStatusInternal(); repStatusStr != test.expectedReplicationStatusInternal {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Aug 08 20:27:40 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  5. cmd/data-usage-utils.go

    	dui.TierStats.populateStats(ts)
    
    	infos := make([]madmin.TierInfo, 0, len(ts))
    	for tier, stats := range ts {
    		infos = append(infos, madmin.TierInfo{
    			Name:  tier,
    			Type:  globalTierConfigMgr.TierType(tier),
    			Stats: stats,
    		})
    	}
    
    	sort.Slice(infos, func(i, j int) bool {
    		if infos[i].Type == "internal" {
    			return true
    		}
    		if infos[j].Type == "internal" {
    			return false
    		}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication-utils.go

    		ReplicaStatus:        prevState.ReplicaStatus,
    	}
    	var replStatuses, vpurgeStatuses string
    	replStatuses = rinfos.ReplicationStatusInternal()
    	rs.Targets = replicationStatusesMap(replStatuses)
    	rs.ReplicationStatusInternal = replStatuses
    	rs.ReplicationTimeStamp = rinfos.ReplicationTimeStamp
    
    	vpurgeStatuses = rinfos.VersionPurgeStatusInternal()
    	rs.VersionPurgeStatusInternal = vpurgeStatuses
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  7. istioctl/pkg/util/handlers/handlers.go

    	builder.ResourceNames("pods", resname)
    	infos, err := builder.Do().Infos()
    	if err != nil {
    		return nil, "", "", "", fmt.Errorf("failed retrieving: %v in the %q namespace", err, ns)
    	}
    	if len(infos) != 1 {
    		return nil, "", "", "", errors.New("expected a resource")
    	}
    	_, ok := infos[0].Object.(*corev1.Pod)
    	if ok {
    		// If we got a pod, just use its name
    		return nil, infos[0].Name, infos[0].Namespace, "", nil
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 06 15:01:41 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  8. docs/pt/docs/features.md

        * UUID.
        * ...e outros.
    
    Toda a validação é controlada pelo robusto e bem estabelecido **Pydantic**.
    
    ### Segurança e autenticação
    
    Segurança e autenticação integradas. Sem nenhum compromisso com bancos de dados ou modelos de dados.
    
    Todos os esquemas de seguranças definidos no OpenAPI, incluindo:
    
    * HTTP Basic.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/WatchTest.java

                throws InterruptedException, ExecutionException, TimeoutException {
            assertNotNull(this.future);
            List<FileNotifyInformation> notifications = this.future.get(10, TimeUnit.SECONDS);
            if ( infos != null ) {
                infos.addAll(notifications);
            }
            boolean found = false;
            for ( FileNotifyInformation fi : notifications ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  10. docs/pt/docs/alternatives.md

    Flask é um "microframework", não inclui integração com banco de dados nem muitas das coisas que vêm por padrão no Django.
    
    Sua simplicidade e flexibilidade permitem fazer coisas como utilizar bancos de dados NoSQL como principal sistema de armazenamento de dados.
    
    Por ser tão simples, é relativamente intuitivo de aprender, embora a documentação esteja de forma mais técnica em alguns pontos.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.5K bytes
    - Viewed (0)
Back to top