Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for educate (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

     * It is concerned with recreating the <i>plain</i> console for an invocation,
     * and associating logging output with tasks, projects, and other logical entities.
     * It does not attempt to emulate the rich console.
     *
     * This solution has some quirks due to how the console output subsystem in Gradle has evolved.
     *
     * An “output event” effectively represents something of interest happening that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/expiration.go

    		return errLifecycleDateNotMidnight
    	}
    
    	*eDate = ExpirationDate{expDate}
    	return nil
    }
    
    // MarshalXML encodes expiration date if it is non-zero and encodes
    // empty string otherwise
    func (eDate ExpirationDate) MarshalXML(e *xml.Encoder, startElement xml.StartElement) error {
    	if eDate.Time.IsZero() {
    		return nil
    	}
    	return e.EncodeElement(eDate.Format(time.RFC3339), startElement)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

        // VarHandles for restored tensors.
        Variadic<TF_Tensor>:$var_handles,
        // Data types for restored tensor.
        TypeArrayAttr: $restored_dtypes,
        // whether trucate is used when casting from the restored_dytpe to the type specified in VarHandle
        DenseBoolArrayAttr: $truncate_in_cast
      );
    
    }
    
    
    def TF_IfrtLoadVariableOp : TF_Op<"IfrtLoadVariable", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/internal/poll/fd_wasip1.go

    	// readdir position. It is reset to zero if the program calls Seek(0, 0).
    	Dircookie uint64
    
    	// Absolute path of the file, as returned by syscall.PathOpen;
    	// this is used by Fchdir to emulate setting the current directory
    	// to an open file descriptor.
    	Path string
    
    	// TODO(achille): it could be meaningful to move isFile from FD to a method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top