Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 87 for 2xcomplex (0.13 sec)

  1. docs/en/docs/async.md

    But before that, handling asynchronous code was quite more complex and difficult.
    
    In previous versions of Python, you could have used threads or <a href="https://www.gevent.org/" class="external-link" target="_blank">Gevent</a>. But the code is way more complex to understand, debug, and think about.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/security/oauth2-scopes.md

    The most common is the implicit flow.
    
    The most secure is the code flow, but is more complex to implement as it requires more steps. As it is more complex, many providers end up suggesting the implicit flow.
    
    !!! note
        It's common that each authentication provider names their flows in a different way, to make it part of their brand.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

      if (elemType.isInteger(1) || elemType.isInteger(4) || elemType.isInteger(8) ||
          elemType.isInteger(16) || elemType.isInteger(32) ||
          elemType.isInteger(64))
        return true;
    
      // Complex<F<32>> is allowed.
      if (mlir::isa<ComplexType>(elemType) &&
          mlir::cast<ComplexType>(elemType).getElementType().isF32())
        return true;
    
      // QUINT8 and UI8 are allowed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        // TLD with only 1 (wildcard) rule.
        checkPublicSuffix("mm", null)
        checkPublicSuffix("c.mm", null)
        checkPublicSuffix("b.c.mm", "b.c.mm")
        checkPublicSuffix("a.b.c.mm", "b.c.mm")
        // More complex TLD.
        checkPublicSuffix("jp", null)
        checkPublicSuffix("test.jp", "test.jp")
        checkPublicSuffix("www.test.jp", "test.jp")
        checkPublicSuffix("ac.jp", null)
        checkPublicSuffix("test.ac.jp", "test.ac.jp")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/text/template/exec.go

    	panic("not reached")
    }
    
    func (s *state) evalComplex(typ reflect.Type, n parse.Node) reflect.Value {
    	if n, ok := n.(*parse.NumberNode); ok && n.IsComplex {
    		value := reflect.New(typ).Elem()
    		value.SetComplex(n.Complex128)
    		return value
    	}
    	s.errorf("expected complex; found %s", n)
    	panic("not reached")
    }
    
    func (s *state) evalEmptyInterface(dot reflect.Value, n parse.Node) reflect.Value {
    	s.at(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. src/text/template/funcs.go

    					return false, errBadComparison
    				}
    			}
    		} else {
    			switch k1 {
    			case boolKind:
    				truth = arg1.Bool() == arg.Bool()
    			case complexKind:
    				truth = arg1.Complex() == arg.Complex()
    			case floatKind:
    				truth = arg1.Float() == arg.Float()
    			case intKind:
    				truth = arg1.Int() == arg.Int()
    			case stringKind:
    				truth = arg1.String() == arg.String()
    			case uintKind:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    The property should not have any setter methods.
    Gradle provides the implementation for the getter method and creates a value for the property.
    
    This pattern is useful when a custom type has a nested complex type which has the same lifecycle.
    If the lifecycle is different, consider using `Property<NestedType>` instead.
    
    Here is an example of a task type with a `resource` property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/map.go

    				// Some other modifier. We're still allowed to gobble Greek
    				// modifiers after this.
    				c.copy()
    			}
    		}
    	}
    	return i == maxIgnorable
    }
    
    // TODO: implement elUpperSpan (low-priority: complex and infrequent).
    
    func ltLower(c *context) bool {
    	// From CLDR:
    	// # Introduce an explicit dot above when lowercasing capital I's and J's
    	// # whenever there are more accents above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. src/encoding/binary/binary_test.go

    	0x08090a0b0c0d0e0f,
    	0x10,
    	0x1112,
    	0x13141516,
    	0x1718191a1b1c1d1e,
    
    	math.Float32frombits(0x1f202122),
    	math.Float64frombits(0x232425262728292a),
    	complex(
    		math.Float32frombits(0x2b2c2d2e),
    		math.Float32frombits(0x2f303132),
    	),
    	complex(
    		math.Float64frombits(0x333435363738393a),
    		math.Float64frombits(0x3b3c3d3e3f404142),
    	),
    
    	[4]uint8{0x43, 0x44, 0x45, 0x46},
    
    	true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // in the argument of the call to C.malloc resolves to "·this·".k, which
    // has an accurate type.
    //
    // This approach could in principle be generalized to more complex
    // analyses on raw cgo files. One could synthesize a "C" package so that
    // C.f would resolve to "·this·"._C_func_f, for example. But we have
    // limited ourselves here to preserving function bodies and initializer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top