Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setHandled (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

                fileLoc.getFilename().str());
          } else {
            // If this is a non-FileLineColLoc, go ahead and include it.
            return true;
          }
        };
      }
    
      setHandler([this](Diagnostic& diag) { return this->handler(&diag); });
    }
    
    Status StatusScopedDiagnosticHandler::ConsumeStatus() {
      return BaseScopedDiagnosticHandler::ConsumeStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/watcher_test.go

    		valuesKey: valuesConfig,
    	})
    
    	var mu sync.Mutex
    	var newConfig *Config
    	var newValues string
    
    	client := kube.NewFakeClient()
    	w := NewConfigMapWatcher(client, namespace, cmName, configKey, valuesKey)
    	w.SetHandler(func(config *Config, values string) error {
    		mu.Lock()
    		defer mu.Unlock()
    		newConfig = config
    		newValues = values
    		return nil
    	})
    	stop := test.NewStop(t)
    	go w.Run(stop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    	case *hx != nil:
    		// Only type parameter x has an inferred type. Use handle of x.
    		u.setHandle(y, hx)
    	// This case is treated like the default case.
    	// case *hy != nil:
    	// 	// Only type parameter y has an inferred type. Use handle of y.
    	//	u.setHandle(x, hy)
    	default:
    		// Neither type parameter has an inferred type. Use handle of y.
    		u.setHandle(x, hy)
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/unify.go

    	case *hx != nil:
    		// Only type parameter x has an inferred type. Use handle of x.
    		u.setHandle(y, hx)
    	// This case is treated like the default case.
    	// case *hy != nil:
    	// 	// Only type parameter y has an inferred type. Use handle of y.
    	//	u.setHandle(x, hy)
    	default:
    		// Neither type parameter has an inferred type. Use handle of y.
    		u.setHandle(x, hy)
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. pkg/kube/inject/webhook.go

    	mu           sync.RWMutex
    	Config       *Config
    	meshConfig   *meshconfig.MeshConfig
    	valuesConfig ValuesConfig
    	namespaces   *multicluster.KclientComponent[*corev1.Namespace]
    
    	// please do not call SetHandler() on this watcher, instead us MultiCast.AddHandler()
    	watcher   Watcher
    	MultiCast *WatcherMulticast
    
    	env      *model.Environment
    	revision string
    }
    
    func (wh *Webhook) GetConfig() WebhookConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top