Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 650 for z$ (0.13 sec)

  1. docs/pl/docs/features.md

    * Zaprojektowane z myślą o zgodności z powyższymi standardami zamiast dodawania ich obsługi po fakcie.
    * Możliwość automatycznego **generowania kodu klienta** w wielu językach.
    
    ### Automatyczna dokumentacja
    
    Interaktywna dokumentacja i webowe interfejsy do eksploracji API. Z racji tego, że framework bazuje na OpenAPI, istnieje wiele opcji, z czego 2 są domyślnie dołączone.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradients_test.cc

      auto z = Const(scope_test_.WithOpName("z"), {{9.0, 10.0, 11.0}});
    
      auto m1 = MatMul(scope_test_, x, y);
      auto m2 = MatMul(scope_test_, y, z);
      auto dm1 = Const(scope_test_, {{0.5}, {0.5}});
    
      // From m1, z is unreachable, so an error status should be returned.
      //   m2  m1
      //   |   |
      //   *   *
      //  / \ / \
      // z   y   x
      std::vector<Output> grad_outputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  3. src/math/big/ratconv.go

    		if n > 1e6 {
    			return nil, false // avoid excessively large exponents
    		}
    		pow5 := z.b.abs.expNN(natFive, nat(nil).setWord(Word(n)), nil, false) // use underlying array of z.b.abs
    		if exp5 > 0 {
    			z.a.abs = z.a.abs.mul(z.a.abs, pow5)
    			z.b.abs = z.b.abs.setWord(1)
    		} else {
    			z.b.abs = pow5
    		}
    	} else {
    		z.b.abs = z.b.abs.setWord(1)
    	}
    
    	// apply exp2 contributions
    	if exp2 < -1e7 || exp2 > 1e7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p521.go

    type P521Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    	x, y, z *fiat.P521Element
    }
    
    // NewP521Point returns a new P521Point representing the point at infinity point.
    func NewP521Point() *P521Point {
    	return &P521Point{
    		x: new(fiat.P521Element),
    		y: new(fiat.P521Element).One(),
    		z: new(fiat.P521Element),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/shift_test.go

    func variableShiftOverflow16x8(x int16, y, z uint8) (a, b, c int16) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int16(uint16(x) >> (y + z))
    }
    
    //go:noinline
    func variableShiftOverflow8x8(x int8, y, z uint8) (a, b, c int8) {
    	// Verify junk bits are ignored when doing a variable shift.
    	return x >> (y + z), x << (y + z), int8(uint8(x) >> (y + z))
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p224.go

    type P224Point struct {
    	// The point is represented in projective coordinates (X:Y:Z),
    	// where x = X/Z and y = Y/Z.
    	x, y, z *fiat.P224Element
    }
    
    // NewP224Point returns a new P224Point representing the point at infinity point.
    func NewP224Point() *P224Point {
    	return &P224Point{
    		x: new(fiat.P224Element),
    		y: new(fiat.P224Element).One(),
    		z: new(fiat.P224Element),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  7. test/live.go

    	}
    	z = m2[[2]string{"x", "y"}]
    	z = m2[[2]string{"x", "y"}]
    	printbytepointer(z)
    }
    
    func f23() {
    	// key temporary for two-result map access using array literal key.
    	var z *byte
    	var ok bool
    	if b {
    		z, ok = m2[[2]string{"x", "y"}] // ERROR "stack object .autotmp_[0-9]+ \[2\]string$"
    	}
    	z, ok = m2[[2]string{"x", "y"}]
    	z, ok = m2[[2]string{"x", "y"}]
    	printbytepointer(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

        for (int i : new int[] {0, SIZE - 1}) {
          for (double x : VALUES) {
            for (double y : VALUES) {
              aa.set(i, x);
              double z = aa.getAndAdd(i, y);
              assertBitEquals(x, z);
              assertBitEquals(x + y, aa.get(i));
            }
          }
        }
      }
    
      /** addAndGet adds given value to current, and returns current value */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/net/http/cookie_test.go

    		{"\x00\x7e\x7f\x80", false, "\x7e"},
    		{`withquotes`, true, `"withquotes"`},
    		{`"withquotes"`, true, `"withquotes"`}, // double quotes are not valid octets
    		{"a z", false, `"a z"`},
    		{" z", false, `" z"`},
    		{"a ", false, `"a "`},
    		{"a,z", false, `"a,z"`},
    		{",z", false, `",z"`},
    		{"a,", false, `"a,"`},
    	}
    	for _, tt := range tests {
    		if got := sanitizeCookieValue(tt.in, tt.quoted); got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. docs/pl/docs/index.md

    ---
    
    FastAPI to nowoczesny, wydajny framework webowy do budowania API z użyciem Pythona bazujący na standardowym typowaniu Pythona.
    
    Kluczowe cechy:
    
    * **Wydajność**: FastAPI jest bardzo wydajny, na równi z **NodeJS** oraz **Go** (dzięki Starlette i Pydantic). [Jeden z najszybszych dostępnych frameworków Pythonowych](#wydajnosc).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top