Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Iface1 (0.14 sec)

  1. src/runtime/iface.go

    //
    //go:linkname reflect_ifaceE2I reflect.ifaceE2I
    func reflect_ifaceE2I(inter *interfacetype, e eface, dst *iface) {
    	*dst = iface{assertE2I(inter, e._type), e.data}
    }
    
    //go:linkname reflectlite_ifaceE2I internal/reflectlite.ifaceE2I
    func reflectlite_ifaceE2I(inter *interfacetype, e eface, dst *iface) {
    	*dst = iface{assertE2I(inter, e._type), e.data}
    }
    
    func iterate_itabs(fn func(*itab)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/ureader.go

    	// after we've called SetUnderlying everywhere.
    	//
    	// TODO(mdempsky): After CL 424876 lands, it should be safe to call
    	// iface.Complete() immediately.
    	r.p.ifaces = append(r.p.ifaces, iface)
    
    	return iface
    }
    
    func (r *reader) signature(recv *types.Var, rtparams, tparams []*types.TypeParam) *types.Signature {
    	r.Sync(pkgbits.SyncSignature)
    
    	params := r.params()
    	results := r.params()
    	variadic := r.Bool()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/runtime/alg.go

    	return *(*string)(p) == *(*string)(q)
    }
    func interequal(p, q unsafe.Pointer) bool {
    	x := *(*iface)(p)
    	y := *(*iface)(q)
    	return x.tab == y.tab && ifaceeq(x.tab, x.data, y.data)
    }
    func nilinterequal(p, q unsafe.Pointer) bool {
    	x := *(*eface)(p)
    	y := *(*eface)(q)
    	return x._type == y._type && efaceeq(x._type, x.data, y.data)
    }
    func efaceeq(t *_type, x, y unsafe.Pointer) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. pkg/volume/iscsi/iscsi_util.go

    		if !strings.HasPrefix(line, "iface.") || strings.Contains(line, "<empty>") {
    			continue
    		}
    		iface := strings.Fields(line)
    		if len(iface) != 3 || iface[1] != "=" {
    			return nil, fmt.Errorf("error: invalid iface setting: %v", iface)
    		}
    		// iscsi_ifacename is immutable once the iface is created
    		if iface[0] == "iface.iscsi_ifacename" {
    			continue
    		}
    		params[iface[0]] = iface[2]
    	}
    	return params, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  5. src/runtime/runtime-gdb.py

    		# chop at first space.
    		pc = int(str(pc).split(None, 1)[0], 16)
    	return pc
    
    
    #
    #  For reference, this is what we're trying to do:
    #  eface: p *(*(struct 'runtime.rtype'*)'main.e'->type_->data)->string
    #  iface: p *(*(struct 'runtime.rtype'*)'main.s'->tab->Type->data)->string
    #
    # interface types can't be recognized by their name, instead we check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpPluginTest.groovy

                    new Facet(FacetType.fixed, "jst.java", null),
                    new Facet(FacetType.fixed, "jst.web", null),
                    new Facet(FacetType.installed, "jst.web", "4.0"),
                    new Facet(FacetType.installed, "jst.java", "1.4")])
        }
    
        @Issue('gradle/gradle#17681')
        def "add 'jst.ejb' facet should remove incompatible 'jst.utility' facet"() {
            when:
            project.apply(plugin: 'java')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 08 10:14:49 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. src/runtime/error.go

    	case abi.Int16:
    		print(typestring, "(", *(*int16)(eface.data), ")")
    	case abi.Int32:
    		print(typestring, "(", *(*int32)(eface.data), ")")
    	case abi.Int64:
    		print(typestring, "(", *(*int64)(eface.data), ")")
    	case abi.Uint:
    		print(typestring, "(", *(*uint)(eface.data), ")")
    	case abi.Uint8:
    		print(typestring, "(", *(*uint8)(eface.data), ")")
    	case abi.Uint16:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi_util_test.go

    	fakeIscsiadmOutput1 := "# BEGIN RECORD 2.0-873\n" +
    		"iface.iscsi_ifacename = default\n" +
    		"iface.transport_name = tcp\n" +
    		"iface.initiatorname = <empty>\n" +
    		"iface.mtu = 0\n" +
    		"# END RECORD"
    
    	fakeIscsiadmOutput2 := "# BEGIN RECORD 2.0-873\n" +
    		"iface.iscsi_ifacename = default\n" +
    		"iface.transport_name = cxgb4i\n" +
    		"iface.initiatorname = <empty>\n" +
    		"iface.mtu = 0\n" +
    		"# END RECORD"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

              it.facets.add(new Facet('facet.three', '3.0'))
            }
            withXml { it.asNode().appendNode('be', 'cool') }
          }
        }
      }
    }
            """
    
            def facet = getFile([:], '.settings/org.eclipse.wst.common.project.facet.core.xml').text
    
            assert facet.contains('facet.one')
            assert facet.contains('facet.two')
            assert facet.contains('facet.three')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                        @Override
                        public List<Facet> call() throws Exception {
                            return Lists.newArrayList(
                                new Facet(Facet.FacetType.fixed, "jst.java", null),
                                new Facet(Facet.FacetType.installed, "jst.utility", "1.0"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top