Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 338 for happen (0.19 sec)

  1. src/os/signal/doc.go

    When Go code is built with options like -buildmode=c-shared, it will
    be run as part of an existing non-Go program. The non-Go code may
    have already installed signal handlers when the Go code starts (that
    may also happen in unusual cases when using cgo or SWIG; in that case,
    the discussion here applies).  For -buildmode=c-archive the Go runtime
    will initialize signals at global constructor time.  For
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

         * is somehow changed, then we want to keep the wrapper.
         *
         * Such substitute overrides happen because of inheritance.
         *
         * If the declaration references only its own type parameters, or parameters from the outer declarations, then
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. cmd/data-scanner.go

    				delete(abandonedChildren, h.Key()) // h.Key() already accounted for.
    				if exists {
    					existingFolders = append(existingFolders, this)
    					f.updateCache.copyWithChildren(&f.oldCache, h, &thisHash)
    				} else {
    					newFolders = append(newFolders, this)
    				}
    				return nil
    			}
    
    			wait := noWait
    			if f.weSleep() {
    				// Dynamic time delay.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  4. cmd/generic-handlers.go

    // such as ".." and "."
    func hasBadPathComponent(path string) bool {
    	if len(path) > 4096 {
    		// path cannot be greater than Linux PATH_MAX
    		// this is to avoid a busy loop, that can happen
    		// if the caller sends path of following style
    		// a/a/a/a/a/a/a/a...
    		return true
    	}
    	path = filepath.ToSlash(strings.TrimSpace(path)) // For windows '\' must be converted to '/'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    	}
    
    	for _, q := range queries {
    		if q.pattern == "all" {
    			r.patternAllQueries = append(r.patternAllQueries, q)
    		} else if q.patternIsLocal {
    			r.localQueries = append(r.localQueries, q)
    		} else if q.isWildcard() {
    			r.wildcardQueries = append(r.wildcardQueries, q)
    		} else {
    			r.pathQueries = append(r.pathQueries, q)
    		}
    
    		if q.version == "none" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    			return nil, err
    		}
    		c.childIOFiles = append(c.childIOFiles, f)
    		return f, nil
    	}
    
    	if f, ok := c.Stdin.(*os.File); ok {
    		return f, nil
    	}
    
    	pr, pw, err := os.Pipe()
    	if err != nil {
    		return nil, err
    	}
    
    	c.childIOFiles = append(c.childIOFiles, pr)
    	c.parentIOPipes = append(c.parentIOPipes, pw)
    	c.goroutine = append(c.goroutine, func() error {
    		_, err := io.Copy(pw, c.Stdin)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		return nil, false
    	}
    
    	result := make([]string, 0, 2)
    	result = append(result, c.indexedTrigger.indexerFunc(baseObjectThreadUnsafe(event.Object)))
    	if event.PrevObject == nil {
    		return result, true
    	}
    	prevTriggerValue := c.indexedTrigger.indexerFunc(baseObjectThreadUnsafe(event.PrevObject))
    	if result[0] != prevTriggerValue {
    		result = append(result, prevTriggerValue)
    	}
    	return result, true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    				continue
    			}
    			if have.Contains(svc.Service.Hostname) {
    				// Skip adding metadata for instance with the same host name.
    				// This could happen when a service has multiple IPs.
    				continue
    			}
    			svcMetaList.Values = append(svcMetaList.Values, buildServiceMetadata(svc.Service))
    			have.Insert(svc.Service.Hostname)
    		}
    	} else if direction == model.TrafficDirectionOutbound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/util/util.go

    	// available at client sidecar, so that telemetry filter could use for metric labels. This is useful for two cases:
    	// server does not have sidecar injected, and request fails to reach server and thus metadata exchange does not happen.
    	// Due to performance concern, telemetry metadata is compressed into a semicolon separated string:
    	// workload-name;namespace;canonical-service-name;canonical-service-revision;cluster-id.
    	if features.EndpointTelemetryLabel {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. pkg/controller/podgc/gc_controller_test.go

    func setupNewSimpleClient(nodes []*v1.Node, pods []*v1.Pod) *fake.Clientset {
    	podList := &v1.PodList{}
    	for _, podItem := range pods {
    		podList.Items = append(podList.Items, *podItem)
    	}
    	nodeList := &v1.NodeList{}
    	for _, nodeItem := range nodes {
    		nodeList.Items = append(nodeList.Items, *nodeItem)
    	}
    	return fake.NewSimpleClientset(nodeList, podList)
    }
    
    func getDeletedPodNames(client *fake.Clientset) sets.Set[string] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top