Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for unnamed1 (0.14 sec)

  1. pkg/adsc/adsc_test.go

    		validator        func(testCase) error
    	}
    
    	descs := []testDesc{
    		{
    			desc:            "stream-no-resources",
    			initialRequests: []*discovery.DiscoveryRequest{},
    		},
    		{
    			desc: "stream-2-unnamed-resources",
    			initialRequests: []*discovery.DiscoveryRequest{
    				{
    					TypeUrl: "foo",
    				},
    				{
    					TypeUrl: "bar",
    				},
    			},
    		},
    		{
    			desc:            "stream-3-completed-mcp-resources",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    		var params []*Var
    		if sig.params != nil {
    			params = sig.params.vars
    		}
    		// Be consistent about named/unnamed parameters. This is not needed
    		// for type-checking, but the newly constructed signature may appear
    		// in an error message and then have mixed named/unnamed parameters.
    		// (An alternative would be to not print parameter names in errors,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // nor PrintTo().
    enum TypeKind {
      kProtobuf,              // a protobuf type
      kConvertibleToInteger,  // a type implicitly convertible to BiggestInt
                              // (e.g. a named or unnamed enum type)
      kOtherType              // anything else
    };
    
    // TypeWithoutFormatter<T, kTypeKind>::PrintValue(value, os) is called
    // by the universal printer to print a value of type T when neither
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            @Override
            public Iterable<String> asArguments() {
                return test.getJavaVersion().isCompatibleWith(JavaVersion.VERSION_1_9)
                    ? Collections.singletonList("--add-opens=java.base/java.lang=ALL-UNNAMED")
                    : Collections.emptyList();
            }
        }
    
        private static class LocalPluginPublication implements PluginPublication {
            private final PluginDeclaration pluginDeclaration;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    // nor PrintTo().
    enum TypeKind {
      kProtobuf,              // a protobuf type
      kConvertibleToInteger,  // a type implicitly convertible to BiggestInt
                              // (e.g. a named or unnamed enum type)
      kOtherType              // anything else
    };
    
    // TypeWithoutFormatter<T, kTypeKind>::PrintValue(value, os) is called
    // by the universal printer to print a value of type T when neither
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    	return hash
    }
    
    // shallowHash computes a hash of t without looking at any of its
    // element Types, to avoid potential anonymous cycles in the types of
    // interface methods.
    //
    // When an unnamed non-empty interface type appears anywhere among the
    // arguments or results of an interface method, there is a potential
    // for endless recursion. Consider:
    //
    //	type X interface { m() []*interface { X } }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    type builder struct {
    	io.Writer
    	attributes *DotAttributes
    	config     *DotConfig
    }
    
    // start generates a title and initial node in DOT format.
    func (b *builder) start() {
    	graphname := "unnamed"
    	if b.config.Title != "" {
    		graphname = b.config.Title
    	}
    	fmt.Fprintln(b, `digraph "`+graphname+`" {`)
    	fmt.Fprintln(b, `node [style=filled fillcolor="#f8f8f8"]`)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/dwarfgen/dwinl.go

    				// because a composite variable was split into pieces,
    				// and we're looking at a piece. We can also see
    				// return temps (~r%d) that were created during
    				// lowering, or unnamed params ("_").
    				v.ChildIndex = int32(synthCount)
    				synthCount++
    			}
    		}
    	}
    
    	// Make a second pass through the progs to compute PC ranges for
    	// the various inlined calls.
    	start := int64(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. 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)
  10. src/go/types/api.go

    	//
    	//     *ast.ImportSpec    *PkgName for imports without renames
    	//     *ast.CaseClause    type-specific *Var for each type switch case clause (incl. default)
    	//     *ast.Field         anonymous parameter *Var (incl. unnamed results)
    	//
    	Implicits map[ast.Node]Object
    
    	// Selections maps selector expressions (excluding qualified identifiers)
    	// to their corresponding selections.
    	Selections map[*ast.SelectorExpr]*Selection
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top