Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 104 for tcCall (0.09 sec)

  1. src/cmd/compile/internal/liveness/plive.go

    		//  4. GC within G, transitively called from F
    		//    a. X is live at call site, therefore is spilled, to its spill slot (which is live because of subsequent LoadReg).
    		//    b. X is not live at call site -- but neither is its spill slot.
    		n, _ := ssa.AutoVar(v)
    		return n, ssa.SymRead
    
    	case ssa.OpVarLive:
    		return v.Aux.(*ir.Name), ssa.SymRead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// - `"Webhook"`: API Server will call to an external webhook to do the conversion. Additional information
    	//   is needed for this option. This requires spec.preserveUnknownFields to be false, and spec.conversion.webhook to be set.
    	Strategy ConversionStrategyType `json:"strategy" protobuf:"bytes,1,name=strategy"`
    
    	// webhook describes how to call the conversion webhook. Required when `strategy` is set to `"Webhook"`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                    config.clear()
                }
                testDirectory.file('initial-commit').createNewFile()
                git.add().addFilepattern("initial-commit").call()
                git.commit().setMessage("Initial commit").call()
            }
        }
    
        /**
         * Want syntax highlighting inside of IntelliJ? Consider using {@link AbstractIntegrationSpec#buildFile(String)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * run. An attempt will be made to restart execution on the next call to {@code execute}. If the
       * {@code delegate} has begun to reject execution, the previously submitted tasks may never run,
       * despite not throwing a RejectedExecutionException synchronously with the call to {@code
       * execute}. If this behaviour is problematic, use an Executor with a single thread (e.g. {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  5. cmd/metrics-v3-types.go

    // 500 Internal Server Error.
    type MetricsLoaderFn func(context.Context, MetricValues, *metricsCache) error
    
    // JoinLoaders - joins multiple loaders into a single loader. The returned
    // loader will call each of the given loaders in order. If any of the loaders
    // return an error, the returned loader will return that error.
    func JoinLoaders(loaders ...MetricsLoaderFn) MetricsLoaderFn {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/go/types/check.go

    	isPanic       map[*ast.CallExpr]bool // set of panic call expressions (used for termination check)
    	hasLabel      bool                   // set if a function makes use of labels (only ~1% of functions); unused outside functions
    	hasCallOrRecv bool                   // set if an expression contains a function call or channel receive operation
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/net/textproto/reader.go

    	for {
    		l, more, err := r.R.ReadLine()
    		if err != nil {
    			return nil, err
    		}
    		if lim >= 0 && int64(len(line))+int64(len(l)) > lim {
    			return nil, errMessageTooLarge
    		}
    		// Avoid the copy if the first call produced a full line.
    		if line == nil && !more {
    			return l, nil
    		}
    		line = append(line, l...)
    		if !more {
    			break
    		}
    	}
    	return line, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. src/os/file_unix.go

    // blocking if code calls the Fd method. We don't want that for direct
    // calls to NewFile: passing a nonblocking descriptor to NewFile should
    // remain nonblocking if you get it back using Fd. But for net.conn.File
    // the call to NewFile is hidden from the user. Historically in that case
    // the Fd method has returned a blocking descriptor, and we want to
    // retain that behavior because existing code expects it and depends on it.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                // If a real Gradle installation is used, the following modules will be force-loaded anyway by gradle-core through the getClassPath("GRADLE_EXTENSIONS") call in the DefaultClassLoaderRegistry constructor
                // See also: DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. pkg/istio-agent/agent.go

    		int(a.proxyConfig.ProxyAdminPort), a.cfg.EnvoyStatusPort, a.cfg.EnvoyPrometheusPort, a.cfg.ExitOnZeroActiveConnections)
    	return nil
    }
    
    // Run is a non-blocking call which returns either an error or a function to await for completion.
    func (a *Agent) Run(ctx context.Context) (func(), error) {
    	var err error
    	if err = a.initLocalDNSServer(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top