Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for educate (0.31 sec)

  1. src/runtime/signal_freebsd.go

    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/* 7 */ {_SigThrow, "SIGEMT: emulate instruction executed"},
    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/* 9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  2. src/runtime/signal_openbsd.go

    	/*  4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/*  5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/*  6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/*  7 */ {_SigThrow, "SIGEMT: emulate instruction executed"},
    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/*  9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 18:58:08 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/signal_darwin.go

    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/* 7 */ {_SigThrow, "SIGEMT: emulate instruction executed"},
    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/* 9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  5. src/runtime/signal_dragonfly.go

    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/* 7 */ {_SigThrow, "SIGEMT: emulate instruction executed"},
    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/* 9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  6. src/runtime/signal_netbsd.go

    	/*  4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/*  5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/*  6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/*  7 */ {_SigThrow, "SIGEMT: emulate instruction executed"},
    	/*  8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating-point exception"},
    	/*  9 */ {0, "SIGKILL: kill"},
    	/* 10 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  7. pkg/collateral/control.go

    // string for a flag and returns it and the un-quoted usage.
    // Given "a `name` to show" it returns ("name", "a name to show").
    // If there are no back quotes, the name is an educated guess of the
    // type of the flag's value, or the empty string if the flag is boolean.
    func unquoteUsage(flag *pflag.Flag) (name string, usage string) {
    	// Look for a back-quoted name, but avoid the strings package.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java

       * Assigns a thread to the given {@link Future} to provide {@link ListenableFuture} functionality.
       *
       * <p><b>Warning:</b> If the input future does not already implement {@code ListenableFuture}, the
       * returned future will emulate {@link ListenableFuture#addListener} by taking a thread from an
       * internal, unbounded pool at the first call to {@code addListener} and holding it until the
       * future is {@linkplain Future#isDone() done}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryBuildTypesIntegrationTest.groovy

                }
            }
            hello(NativeLibrarySpec)
        }
        binaries {
            all {
                if (buildType == buildTypes.debug) {
                    cppCompiler.define "FRENCH" // Equate 'debug' to 'french' for this test
                }
            }
        }
    }
            """
            and:
            succeeds "installMainDebugExecutable", "installMainReleaseExecutable"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. 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)
Back to top