Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for other_1 (0.15 sec)

  1. pkg/kubelet/kubelet_pods.go

    // the desired state of the kubelet should be reconciled with the actual state
    // in the pod worker and other pod-related components.
    //
    // This function is executed by the main sync loop, so it must execute quickly
    // and all nested calls should be asynchronous. Any slow reconciliation actions
    // should be performed by other components (like the volume manager). The duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	// Note: buildmode has already been accounted for in buildGcflags
    	// and should not be inserted explicitly. Most buildmodes use the
    	// same compiler settings and can reuse each other's results.
    	// If not, the reason is already recorded in buildGcflags.
    	fmt.Fprintf(h, "compile\n")
    
    	// Include information about the origin of the package that
    	// may be embedded in the debug info for the object file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    // scalar value).
    struct ValuePort {
      PointerUnion<Operation*, BlockArgument> producer;
      SmallVector<unsigned int, 2> port;
    
      bool operator==(const ValuePort& other) const {
        return producer == other.producer && port == other.port;
      }
    
      ValuePort() = default;
    
      // Convert output value to ValuePort.
      explicit ValuePort(Value v) {
        OpResult opr = mlir::dyn_cast<OpResult>(v);
        if (opr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    // These ops are named NonMaxSuppressionV4 & NonMaxSuppressionV5 to be
    // consistent with TensorFlow's naming. They are NOT 'versions' of NMS in the
    // sense that one is an incremental change over the other.
    // In reality NonMaxSuppressionV5 implements Soft Non Max Suppression and
    // NonMaxSuppressionV4 performs hard NMS.
    
    def TFL_NonMaxSuppressionV4Op : TFL_Op<"non_max_suppression_v4", [
      Pure,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    	"bytes"
    	"cmd/internal/gcprog"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    		},
    		{
    			field: StructField{Name: "s", Type: TypeOf(S1{}), PkgPath: "other/pkg"},
    		},
    		{
    			field: StructField{Name: "s", Type: TypeOf((*S1)(nil)), PkgPath: "other/pkg"},
    		},
    		{
    			field: StructField{Name: "s", Type: TypeOf(s2{}), PkgPath: "other/pkg"},
    		},
    		{
    			field: StructField{Name: "s", Type: TypeOf((*s2)(nil)), PkgPath: "other/pkg"},
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	}
    
    	// FIXME: Ideally, we also need to check if there are any global IAM
    	// policies and any (LDAP user created) service accounts on the other
    	// peer clusters, and if so, reject the cluster replicate add request.
    	// This is not yet implemented.
    
    	// VALIDATIONS COMPLETE.
    
    	// Create a common service account for all clusters, with root
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    			// make sure that there are no other entries in the exportTo
    			// i.e. no point in saying ns1,ns2,*. Might as well say *
    			if len(exportTo) > 1 {
    				errs = appendErrors(errs, fmt.Errorf("cannot have both public (*) and non-public exportTo values for a resource"))
    			}
    		}
    
    		// if this is a service entry, then we need to disallow * and ~ together. Or ~ and other namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    		//deviceMountPath := deviceToDetach.DeviceMountPath
    		deviceMountPath, err :=
    			volumeDeviceMounter.GetDeviceMountPath(deviceToDetach.VolumeSpec)
    		if err != nil {
    			// On failure other than "does not exist", return error. Caller will log and retry.
    			if !strings.Contains(err.Error(), "does not exist") {
    				eventErr, detailedErr := deviceToDetach.GenerateError("GetDeviceMountPath failed", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	return err
    }
    
    // Close returns the connection to the connection pool.
    // All operations after a Close will return with [ErrConnDone].
    // Close is safe to call concurrently with other operations and will
    // block until all other operations finish. It may be useful to first
    // cancel any used context and then call close directly after.
    func (c *Conn) Close() error {
    	return c.close(nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top