Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for educate (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

            visitor.visitImplementation(transform.getImplementationClass());
        }
    
        @Override
        @OverridingMethodsMustInvokeSuper
        public void visitIdentityInputs(InputVisitor visitor) {
            // Emulate secondary inputs as a single property for now
            visitor.visitInputProperty(SECONDARY_INPUTS_HASH_PROPERTY_NAME, transform::getSecondaryInputHash);
            visitor.visitInputProperty(INPUT_ARTIFACT_PATH_PROPERTY_NAME, () ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/runtime/sigtab_aix.go

    	_SIGSYS:     {_SigThrow, "SIGSYS: bad system call"},
    	_SIGIO:      {_SigNotify, "SIGIO: i/o now possible"},
    	_SIGPWR:     {_SigNotify, "SIGPWR: power failure restart"},
    	_SIGEMT:     {_SigThrow, "SIGEMT: emulate instruction executed"},
    	_SIGWAITING: {0, "SIGWAITING: reserved signal no longer used by"},
    	26:          {_SigNotify, "signal 26"},
    	27:          {_SigNotify, "signal 27"},
    	33:          {_SigNotify, "signal 33"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  3. 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)
  4. cmd/kubeadm/app/cmd/completion.go

    }
    
    func runCompletionZsh(out io.Writer, kubeadm *cobra.Command) error {
    	zshInitialization := `
    __kubeadm_bash_source() {
    	alias shopt=':'
    	alias _expand=_bash_expand
    	alias _complete=_bash_comp
    	emulate -L sh
    	setopt kshglob noshglob braceexpand
    
    	source "$@"
    }
    
    __kubeadm_type() {
    	# -t is not supported by zsh
    	if [ "$1" == "-t" ]; then
    		shift
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 09:28:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. src/compress/gzip/gunzip_test.go

    			"  We are met on a great battle-field of that war.\n" +
    			"  We have come to dedicate a portion of that field, as a final\n" +
    			"resting place for those who here gave their lives that that\n" +
    			"nation might live.  It is altogether fitting and proper that\n" +
    			"we should do this.\n" +
    			"  But, in a larger sense, we can not dedicate — we can not\n" +
    			"consecrate — we can not hallow — this ground.\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/Closer.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A {@link Closeable} that collects {@code Closeable} resources and closes them all when it is
     * {@linkplain #close closed}. This was intended to approximately emulate the behavior of Java 7's
     * <a href="http://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html"
     * >try-with-resources</a> statement in JDK6-compatible code. Code using this should be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_ppc64x.s

    #define _LHBEX	MOVH
    #endif
    
    #ifdef GOPPC64_power9
    #define SETB_CR0(rout) SETB CR0, rout
    #define SETB_CR1(rout) SETB CR1, rout
    #define SETB_INIT()
    #define SETB_CR0_NE(rout) SETB_CR0(rout)
    #else
    // A helper macro to emulate SETB on P8. This assumes
    // -1 is in R20, and 1 is in R21. crxlt and crxeq must
    // also be the same CR field.
    #define _SETB(crxlt, crxeq, rout) \
    	ISEL	crxeq,R0,R21,rout \
    	ISEL	crxlt,R20,rout,rout
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/internal/types/testdata/examples/types.go

    var _ List[List[int]] = []List[int]{}
    var _ List[List[List[Tree[int]]]] = []List[List[Tree[int]]]{}
    
    // Type parameters act like type aliases when used in generic types
    // in the sense that we can "emulate" a specific type instantiation
    // with type aliases.
    type T1[P any] struct {
    	f P
    }
    
    type T2[P any] struct {
    	f struct {
    		g P
    	}
    }
    
    var x1 T1[struct{ g int }]
    var x2 T2[int]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    	spec := importSpec(f, path)
    	if spec == nil {
    		return
    	}
    
    	name := spec.Name.String()
    	switch name {
    	case "<nil>":
    		// If the package name is not explicitly specified,
    		// make an educated guess. This is not guaranteed to be correct.
    		lastSlash := strings.LastIndex(path, "/")
    		if lastSlash == -1 {
    			name = path
    		} else {
    			name = path[lastSlash+1:]
    		}
    	case "_", ".":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  10. src/crypto/aes/asm_ppc64x.s

    #define P8_LXVB16X(RA,RB,VT)  LXVB16X	(RA+RB), VT
    #define P8_STXVB16X(VS,RA,RB) STXVB16X	VS, (RA+RB)
    #define XXBRD_ON_LE(VA,VT)    XXBRD	VA, VT
    #  else
    // On POWER8/ppc64le, emulate the POWER9 instructions by loading unaligned
    // doublewords and byte-swapping each doubleword to emulate BE load/stores.
    #define NEEDS_ESPERM
    #define P8_LXVB16X(RA,RB,VT) \
    	LXVD2X	(RA+RB), VT \
    	VPERM	VT, VT, ESPERM, VT
    
    #define P8_STXVB16X(VS,RA,RB) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top