Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 212 for newnames (0.42 sec)

  1. tensorflow/compiler/jit/encapsulate_util.cc

        // Find or create placeholder node.
        string new_name =
            absl::StrCat(src->name(), "_oc_to_oc_placeholder_", src_output);
        auto placeholder_index = std::make_pair(src->name(), src_output);
        auto iter = placeholders.find(placeholder_index);
        Node* placeholder_node;
        if (iter == placeholders.end()) {
          NodeDefBuilder placeholder_builder(new_name, "Placeholder");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/abiutilsaux_test.go

    	"cmd/internal/src"
    	"fmt"
    	"strings"
    	"testing"
    	"text/scanner"
    )
    
    func mkParamResultField(t *types.Type, s *types.Sym, which ir.Class) *types.Field {
    	field := types.NewField(src.NoXPos, s, t)
    	n := ir.NewNameAt(src.NoXPos, s, t)
    	n.Class = which
    	field.Nname = n
    	return field
    }
    
    // mkstruct is a helper routine to create a struct type with fields
    // of the types specified in 'fieldtypes'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeterm_test.go

    // license that can be found in the LICENSE file.
    
    package types2
    
    import (
    	"strings"
    	"testing"
    )
    
    var myInt = func() Type {
    	tname := NewTypeName(nopos, nil, "myInt", nil)
    	return NewNamed(tname, Typ[Int], nil)
    }()
    
    var testTerms = map[string]*term{
    	"∅":       nil,
    	"𝓤":       {},
    	"int":     {false, Typ[Int]},
    	"~int":    {true, Typ[Int]},
    	"string":  {false, Typ[String]},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:30:58 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/CustomNamedDomainObjectCollectionTest.groovy

        @Override
        Namer<T> getNamer() {
            return null
        }
    
        @Override
        SortedMap<String, T> getAsMap() {
            return null
        }
    
        @Override
        SortedSet<String> getNames() {
            return null
        }
    
        @Nullable
        @Override
        T findByName(String name) {
            return null
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/ManagedTypeDslIntegrationTest.groovy

        }
    
        def "cannot configure a scalar list property using nested closure"() {
            buildFile << '''
    @Managed interface Person {
        List<String> getNames()
    }
    
    model {
        barry(Person)
        barry {
            names {
                add 'barry'
                add 'baz'
            }
        }
    }
    '''
    
            when:
            fails "model"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/syms.go

    // successive occurrences of the "any" placeholder in the
    // type syntax expression n.Type.
    func substArgTypes(old *ir.Name, types_ ...*types.Type) *ir.Name {
    	for _, t := range types_ {
    		types.CalcSize(t)
    	}
    	n := ir.NewNameAt(old.Pos(), old.Sym(), types.SubstAny(old.Type(), &types_))
    	n.Class = old.Class
    	n.Func = old.Func
    	if len(types_) > 0 {
    		base.Fatalf("SubstArgTypes: too many argument types")
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

            if (binary instanceof SwiftXCTestBundle) {
                TaskContainer tasks = project.getTasks();
                final Names names = binary.getNames();
    
                // TODO - creating a bundle should be done by some general purpose plugin
    
                // TODO - make this lazy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

     *          the new delegate. This ensures the invariant above.
     *     <li> Adds {@link InstrumentableClosure} to the set of interfaces.
     *     <li> Renames the {@code doCall} methods to {@code doCall$original} and adds new {@code doCall methods} that surrounds the original call with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/main.go

    	pkg                string // obj package to import for this arch.
    	genfile            string // source file containing opcode code generation.
    	ops                []opData
    	blocks             []blockData
    	regnames           []string
    	ParamIntRegNames   string
    	ParamFloatRegNames string
    	gpregmask          regMask
    	fpregmask          regMask
    	fp32regmask        regMask
    	fp64regmask        regMask
    	specialregmask     regMask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

            maybeSetGavProperties(GavProperty.PARENT_ARTIFACT_ID, getParentArtifactId());
        }
    
        private void maybeSetGavProperties(GavProperty gavProperty, String propertyValue) {
            for (String name : gavProperty.getNames()) {
                maybeSetEffectiveProperty(name, propertyValue);
            }
        }
    
        private void setPomProperties(Map<String, String> pomProperties) {
            if (!pomProperties.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top