Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for associateBy (0.74 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	// This Pod will go to backoffQ because no failure plugin is associated with it.
    	err = q.AddUnschedulableIfNotPresent(logger, q.newQueuedPodInfo(hpp1), q.SchedulingCycle())
    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    	expectInFlightPods(t, q)
    	// Construct another Pod, and associate its scheduler failure to plugin "barPlugin".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // Infers the shape for MapDatasetOp and its associated function. Returns
      // whether either op or function type was changed.
      bool InferShapeForMapDataset(MapDatasetOp op, int64_t max_iterations);
    
      // Infers the shape for ReduceDatasetOp and its associated reduce function.
      // Returns whether either op or function type was changed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// handlers with Context.Value to access the server that
    	// started the handler. The associated value will be of
    	// type *Server.
    	ServerContextKey = &contextKey{"http-server"}
    
    	// LocalAddrContextKey is a context key. It can be used in
    	// HTTP handlers with Context.Value to access the local
    	// address the connection arrived on.
    	// The associated value will be of type net.Addr.
    	LocalAddrContextKey = &contextKey{"local-addr"}
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    			return nil, fmt.Errorf("cannot find volume %q to pass into container %q", device.Name, container.Name)
    		}
    		// Get a symbolic link associated to a block device under pod device path
    		dirPath, volName := vol.BlockVolumeMapper.GetPodDeviceMapPath()
    		symlinkPath := filepath.Join(dirPath, volName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated server certificate"))
    		}
    		if tls.PrivateKey != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated private key"))
    		}
    		if tls.CaCertificates != "" {
    			v = AppendValidation(v, fmt.Errorf("ISTIO_MUTUAL TLS cannot have associated CA bundle"))
    		}
    		if tls.CredentialName != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Prunes unreachable ops in a tf_executor.graph";
    
      let description = [{
        This pass removes ops from a `tf_executor.graph` that are not transitively, via
        data or control dependencies, connected to the associated `tf_executor.fetch`
        op. The order of ops will be preserved. Functions named `main` with no
        `tf.entry_function` attribute will not be pruned, as such graphs/functions may
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       * value are non-null and the entry does not need to be serializable.
       *
       * @param key the key to be associated with the returned entry
       * @param value the value to be associated with the returned entry
       */
      @GwtCompatible(serializable = true)
      public static <K extends @Nullable Object, V extends @Nullable Object> Entry<K, V> immutableEntry(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    		dc.ci = nil
    	})
    
    	dc.db.mu.Lock()
    	dc.db.numOpen--
    	dc.db.maybeOpenNewConnections()
    	dc.db.mu.Unlock()
    
    	dc.db.numClosed.Add(1)
    	return err
    }
    
    // driverStmt associates a driver.Stmt with the
    // *driverConn from which it came, so the driverConn's lock can be
    // held during calls.
    type driverStmt struct {
    	sync.Locker // the *driverConn
    	si          driver.Stmt
    	closed      bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    //
    // The main concepts are:
    // G - goroutine.
    // M - worker thread, or machine.
    // P - processor, a resource that is required to execute Go code.
    //     M must have an associated P to execute Go code, however it can be
    //     blocked or in a syscall w/o an associated P.
    //
    // Design doc at https://golang.org/s/go11sched.
    
    // Worker thread parking/unparking.
    // We need to balance between keeping enough running worker threads to utilize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/LocalCache.java

              return newValue;
            }
          }
          return oldValue;
        }
    
        /**
         * Refreshes the value associated with {@code key}, unless another thread is already doing so.
         * Returns the newly refreshed value associated with {@code key} if it was refreshed inline, or
         * {@code null} if another thread is performing the refresh or if an error occurs during
         * refresh.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
Back to top