Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 208 for happen (0.13 sec)

  1. chainable_api.go

    	case []string:
    		tx.Statement.Selects = v
    
    		for _, arg := range args {
    			switch arg := arg.(type) {
    			case string:
    				tx.Statement.Selects = append(tx.Statement.Selects, arg)
    			case []string:
    				tx.Statement.Selects = append(tx.Statement.Selects, arg...)
    			default:
    				tx.AddError(fmt.Errorf("unsupported select args %v %v", query, args))
    				return
    			}
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. pilot/pkg/simulation/traffic.go

    	ErrTLSRedirect         = errors.New("tls required, sending 301")
    	ErrNoVirtualHost       = errors.New("no virtual host matched")
    	ErrMultipleFilterChain = errors.New("multiple filter chains matched")
    	// ErrProtocolError happens when sending TLS/TCP request to HCM, for example
    	ErrProtocolError = errors.New("protocol error")
    	ErrTLSError      = errors.New("invalid TLS")
    	ErrMTLSError     = errors.New("invalid mTLS")
    )
    
    type Expect struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/runlit.cfg.py

          ToolSubst('not.exe', unresolved='fatal')
      ]
    
      llvm_config.config.substitutions.append(
          ('%python', '"%s"' % (sys.executable)))
    
      llvm_config.add_tool_substitutions(tool_patterns,
                                         [llvm_config.config.llvm_tools_dir])
    else:
      llvm_config.use_default_substitutions()
    
    llvm_config.config.substitutions.append(
        ('%tfrt_bindir', 'tensorflow/compiler/aot'))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/ctrlz/ctrlz.go

    //
    // ControlZ uses the set of standard core topics.
    func Run(o *Options, customTopics []fw.Topic) (*Server, error) {
    	topicMutex.Lock()
    	allTopics = append(allTopics, coreTopics...)
    	allTopics = append(allTopics, customTopics...)
    	topicMutex.Unlock()
    
    	exec, _ := os.Executable()
    	instance := exec + " - " + getLocalIP()
    
    	funcs := template.FuncMap{
    		"getTopics": getTopics,
    		"normalize": normalize,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                illegalStateFor("commit")
    
            open fun append(fingerprint: ProjectSpecificFingerprint): Unit =
                illegalStateFor("append")
    
            open fun <T> resolveScriptsForProject(identityPath: Path, action: () -> T): T =
                illegalStateFor("resolveScriptsForProject")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/deltatest.go

    	for _, m := range message {
    		if deleted.Contains(m.Name) {
    			continue
    		}
    		if replaced := byName[m.Name]; replaced != nil {
    			res = append(res, replaced)
    			delete(byName, m.Name)
    			continue
    		}
    		res = append(res, m)
    	}
    	for _, v := range byName {
    		res = append(res, v)
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

                return ClassLoader.getSystemClassLoader().loadClass(agentClassName);
            } catch (ClassNotFoundException e) {
                // This typically means that the agent is not loaded at all.
                // For now, this happens when running in a no-daemon mode, or when the Gradle distribution is not available.
                LoggerFactory.getLogger(AgentControl.class).debug("Agent {} is not loaded", agentClassName);
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

       differentiating the energy function, the training must not backpropagate
       through the graph that generated the samples from the model.
    *  Adversarial training, where no backprop should happen through the adversarial
       example generation process.
      }];
    
      let arguments = (ins
        TF_Tensor:$input
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway.go

    								serverPorts = append(serverPorts, serverPort)
    							}
    							ms := mergedServers[serverPort]
    							ms.RouteName = routeName
    							ms.Servers = append(ms.Servers, s)
    						} else {
    							// Merge this to current known port with same bind.
    							ms := mergedServers[current]
    							ms.Servers = append(ms.Servers, s)
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    					}
    					// TCP without a VIP will capture everything.
    					// Auto without a VIP is similar, but HTTP happens to work because routing is done on header
    					if call.Port == 82 || (call.Port == 81 && !call.IsHTTP()) {
    						e.Result.Error = nil
    						e.Result.ClusterMatched = ""
    					}
    					testCalls = append(testCalls, e)
    				}
    				sort.Slice(testCalls, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top