Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for unnamed (0.14 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/build.gradle.kts

            jvmArgs(
                "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED"
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_builder_test.go

    	}{
    		{
    			name:   "permissive",
    			config: "",
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    			tls: map[int]bool{
    				// Permissive mode: inspector is set everywhere
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    	//
    	//     *syntax.ImportDecl    *PkgName for imports without renames
    	//     *syntax.CaseClause    type-specific *Var for each type switch case clause (incl. default)
    	//     *syntax.Field         anonymous parameter *Var (incl. unnamed results)
    	//
    	Implicits map[syntax.Node]Object
    
    	// Selections maps selector expressions (excluding qualified identifiers)
    	// to their corresponding selections.
    	Selections map[*syntax.SelectorExpr]*Selection
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    			if u.nify(x, y, mode, p) {
    				// We have a match, possibly through underlying types.
    				xi := asInterface(x)
    				yi := asInterface(y)
    				xn := asNamed(x) != nil
    				yn := asNamed(y) != nil
    				// If we have two interfaces, what to do depends on
    				// whether they are named and their method sets.
    				if xi != nil && yi != nil {
    					// Both types are interfaces.
    					// If both types are defined types, they must be identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	// protocol detection is disabled for gateway and use_downstream_protocol is used under protocol
    	// detection for cluster to select upstream connection protocol when the service port is unnamed.
    	// use_downstream_protocol should be disabled for gateway; while it sort of makes sense there, even
    	// without sniffing, a concern is that clients will do ALPN negotiation, and we always advertise
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    			if u.nify(x, y, mode, p) {
    				// We have a match, possibly through underlying types.
    				xi := asInterface(x)
    				yi := asInterface(y)
    				xn := asNamed(x) != nil
    				yn := asNamed(y) != nil
    				// If we have two interfaces, what to do depends on
    				// whether they are named and their method sets.
    				if xi != nil && yi != nil {
    					// Both types are interfaces.
    					// If both types are defined types, they must be identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    		stackOffset := state.stackOffset(home)<<1 | 1
    		for _, slot := range vSlots {
    			last := locs.slots[slot]
    			if last.absent() {
    				if state.loggingLevel > 1 {
    					state.logf("at %v: unexpected spill of unnamed register %s\n", v, vReg)
    				}
    				break
    			}
    
    			setSlot(slot, VarLoc{last.Registers, StackOffset(stackOffset)})
    			if state.loggingLevel > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    		}
    
    		v := s.newValue1(ssa.OpCopy, to, x) // ensure that v has the right type
    
    		// CONVNOP closure
    		if to.Kind() == types.TFUNC && from.IsPtrShaped() {
    			return v
    		}
    
    		// named <--> unnamed type or typed <--> untyped const
    		if from.Kind() == to.Kind() {
    			return v
    		}
    
    		// unsafe.Pointer <--> *T
    		if to.IsUnsafePtr() && from.IsPtrShaped() || from.IsUnsafePtr() && to.IsPtrShaped() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          mlir::vhlo::PadOpV1 pad_op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results,
          mlir::VhloToStablehloTypeConverter& vhlo_type_converter);
    
      // create a subgraph given a unnamed mlir region, return the corresponding
      // subgraph index
      int32_t UnnamedRegionToSubgraph(mlir::Region* region,
                                      tflite::BuiltinOperator op_code);
    
      ModuleOp module_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KotlinFirReferenceContributor.kt

                        )
                    }
                }
    
                registerProvider provider@{ element: KtValueArgument ->
                    if (element.isNamed()) return@provider null
                    val annotationEntry = element.getParentOfTypeAndBranch<KtAnnotationEntry> { valueArgumentList } ?: return@provider null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top