Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 80 for 3xcomplex (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/trace/traceviewer/mmu.go

    //
    // When a window size is selected, show a second plot of the mutator
    // utilization distribution for that window size.
    //
    // Render plot progressively so rough outline is visible quickly even
    // for very complex MUTs. Start by computing just a few window sizes
    // and then add more window sizes.
    //
    // Consider using sampling to compute an approximate MUT. This would
    // work by sampling the mutator utilization at randomly selected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * to the module-path if it contains a {@code module-info.class}, or to the class-path otherwise.
         * For the test output directory, the rules are more complex and are governed by the fact that
         * Java does not accept the placement of two modules of the same name on the module-path.
         * So the modular test output directory usually needs to be placed in a {@code --path-module} option.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top