Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for seas (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_filter.go

    	Install(c *mux.PathRecorderMux)
    
    	// WatchTracker provides the WatchTracker interface.
    	WatchTracker
    
    	// MaxSeatsTracker is invoked from the work estimator to track max seats
    	// that can be occupied by a request for a priority level.
    	MaxSeatsTracker
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/index.md

    continuar usando la mayoría de las características de **FastAPI** con el conocimiento del [Tutorial - Guía de Usuario](../tutorial/index.md){.internal-link target=_blank} principal.
    
    En las siguientes secciones se asume que lo has leído y conoces esas ideas principales....
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 822 bytes
    - Viewed (0)
  3. src/net/http/routing_index_test.go

    	}
    
    	var (
    		methods   = []string{"", "GET ", "HEAD ", "POST "}
    		hosts     = []string{"", "h1", "h2"}
    		segs      = []string{"/a", "/b", "/{x}"}
    		finalSegs = []string{"/a", "/b", "/{f}", "/{m...}", "/{$}"}
    	)
    
    	g := genConcat(
    		genChoice(methods),
    		genChoice(hosts),
    		genStar(3, genChoice(segs)),
    		genChoice(finalSegs))
    	g(collect)
    	return pats
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProfileReportRendererTest.groovy

    <td class="numeric">30.000s</td>
    <td>Did No Work</td>
    </tr>
    </table>
    </div>
    </div>"""))
        }
    
        private static long time(int hour, int mins, int secs, int ms = 0) {
            def cal = new GregorianCalendar(2010, 1, 5, hour, mins, secs)
            cal.add(Calendar.MILLISECOND, ms)
            cal.getTimeInMillis()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:41:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/crypto/internal/hpke/hpke.go

    	if s.seqNum.bitLen() >= (s.aead.NonceSize()*8)-1 {
    		panic("message limit reached")
    	}
    	s.seqNum = s.seqNum.addOne()
    	return nonce
    }
    
    func (s *Sender) Seal(aad, plaintext []byte) ([]byte, error) {
    
    	ciphertext := s.aead.Seal(nil, s.nextNonce(), plaintext, aad)
    	return ciphertext, nil
    }
    
    func SuiteID(kemID, kdfID, aeadID uint16) []byte {
    	suiteID := make([]byte, 0, 4+2+2+2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. internal/crypto/error.go

    	errMissingInternalSealAlgorithm = Errorf("The object metadata is missing the internal seal algorithm")
    
    	errInvalidInternalIV            = Errorf("The internal encryption IV is malformed")
    	errInvalidInternalSealAlgorithm = Errorf("The internal seal algorithm is invalid and not supported")
    )
    
    // errOutOfEntropy indicates that the a source of randomness (PRNG) wasn't able
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. internal/crypto/sse.go

    	"github.com/minio/sio"
    )
    
    const (
    	// SealAlgorithm is the encryption/sealing algorithm used to derive & seal
    	// the key-encryption-key and to en/decrypt the object data.
    	SealAlgorithm = "DAREv2-HMAC-SHA256"
    
    	// InsecureSealAlgorithm is the legacy encryption/sealing algorithm used
    	// to derive & seal the key-encryption-key and to en/decrypt the object data.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. src/internal/coverage/encodecounter/encode.go

    	}
    	if err := visitor.VisitFuncs(emitter); err != nil {
    		return err
    	}
    	return nil
    }
    
    func (cfw *CoverageDataWriter) writeFooter() error {
    	cfw.segs++
    	cf := coverage.CounterFileFooter{
    		Magic:       coverage.CovCounterMagic,
    		NumSegments: cfw.segs,
    	}
    	if err := binary.Write(cfw.w, binary.LittleEndian, cf); err != nil {
    		return err
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ToolingApiLoggingCrossVersionSpec.groovy

                .replaceFirst(/Support for .* was deprecated.*\n/, '')
                .replaceFirst(/ in [ \dms]+/, " in 0ms")
                .replaceFirst("Total time: .+ secs", "Total time: 0 secs")
        }
    
        void shouldNotContainProviderLogging(String output) {
            assert !output.contains("Provider implementation created.")
            assert !output.contains("Tooling API uses target gradle version:")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. docs/es/docs/advanced/response-directly.md

    Pero todavía es posible documentarlo como es descrito en [Respuestas adicionales en OpenAPI](additional-responses.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top