Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 545 for names_ (0.24 sec)

  1. src/internal/trace/testdata/README.md

    This will put the tests into a `tests` directory where the trace reader
    tests will find them.
    
    A subset of tests can be regenerated by specifying a regexp pattern for
    the names of tests to generate in the `GOTRACETEST` environment
    variable.
    Test names are defined as the name of the `.go` file that generates the
    trace, but with the `.go` extension removed.
    
    ## Trace test programs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. callbacks/preload.go

    		return nil
    	}
    	names := make([]string, 0, len(embeddedRelations.Relations)+len(embeddedRelations.EmbeddedRelations))
    	for _, relation := range embeddedRelations.Relations {
    		// skip first struct name
    		names = append(names, strings.Join(relation.Field.EmbeddedBindNames[1:], "."))
    	}
    	for _, relations := range embeddedRelations.EmbeddedRelations {
    		names = append(names, embeddedValues(relations)...)
    	}
    	return names
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/os/removeall_at.go

    		for {
    			numErr := 0
    
    			names, readErr := file.Readdirnames(reqSize)
    			// Errors other than EOF should stop us from continuing.
    			if readErr != nil && readErr != io.EOF {
    				file.Close()
    				if IsNotExist(readErr) {
    					return nil
    				}
    				return &PathError{Op: "readdirnames", Path: base, Err: readErr}
    			}
    
    			respSize = len(names)
    			for _, name := range names {
    				err := removeAllFrom(file, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/internal/trace/internal/testgen/go122/trace.go

    	events    []raw.Event
    }
    
    // Event emits an event into a batch. name must correspond to one
    // of the names in Specs() result for the version that was passed to
    // this trace. Callers must omit the timestamp delta.
    func (b *Batch) Event(name string, args ...any) {
    	ev, ok := b.gen.trace.names[name]
    	if !ok {
    		panic(fmt.Sprintf("invalid or unknown event %s", name))
    	}
    	var uintArgs []uint64
    	argOff := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtFunctionLikeSymbol.kt

    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.ClassId
    
    public sealed class KaFunctionLikeSymbol : KaCallableSymbol(), KaSymbolWithKind {
        public abstract val valueParameters: List<KaValueParameterSymbol>
    
        /**
         * Kotlin functions always have stable parameter names that can be reliably used when calling them with named arguments.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/scopes/KtEmptyScope.kt

    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.name.Name
    
    class KaEmptyScope(override val token: KaLifetimeToken) : KaScope {
        override fun getAllPossibleNames(): Set<Name> = withValidityAssertion {
            return emptySet()
        }
    
        override fun getPossibleCallableNames(): Set<Name> = withValidityAssertion {
            return emptySet()
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        /**
         * Name of the file to use as a sentinel value for deciding if a directory or a JAR is modular.
         */
        private static final String MODULE_INFO = "module-info.class";
    
        /**
         * The attribute for automatic module name in {@code META-INF/MANIFEST.MF} files.
         */
        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. istioctl/pkg/waypoint/waypoint.go

    			return err
    		}
    		for _, gw := range waypoints.Items {
    			names = append(names, gw.Name)
    		}
    	}
    
    	var wg sync.WaitGroup
    	var mu sync.Mutex
    	for _, name := range names {
    		wg.Add(1)
    		go func(name string) {
    			defer wg.Done()
    			if err := kubeClient.GatewayAPI().GatewayV1().Gateways(namespace).
    				Delete(context.Background(), name, metav1.DeleteOptions{}); err != nil {
    				if errors.IsNotFound(err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    						// It's OK if we find the name without the dot,
    						// as some systems say 127.0.0.1 localhost localhost.
    						continue loop
    					}
    				}
    				t.Errorf("%s: got %s; want %s", mode, name, name[:len(name)-1])
    			} else if strings.Contains(name, ".") && !strings.HasSuffix(name, ".") { // "localhost.localdomain." not "localhost.localdomain"
    				t.Errorf("%s: got %s; want name ending with trailing dot", mode, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	// already demangled.
    	name := fn.SystemName
    	if looksLikeDemangledCPlusPlus(name) {
    		for _, o := range options {
    			switch o {
    			case demangle.NoParams:
    				name = removeMatching(name, '(', ')')
    			case demangle.NoTemplateParams:
    				name = removeMatching(name, '<', '>')
    			}
    		}
    	}
    	fn.Name = name
    }
    
    // looksLikeDemangledCPlusPlus is a heuristic to decide if a name is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top