Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for educate (0.13 sec)

  1. android/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)
  2. guava/src/com/google/common/reflect/Invokable.java

      public final boolean trySetAccessible() {
        // We can't call accessibleObject.trySetAccessible since that was added in Java 9 and this code
        // should work on Java 8. So we emulate it this way.
        try {
          accessibleObject.setAccessible(true);
          return true;
        } catch (Exception e) { // sneaky checked exception
          return false;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                try {
                    return Files.readAttributes(symlink, BasicFileAttributes.class);
                } catch (IOException ioe) {
                    // We emulate the behavior of `Files.walkFileTree(Path, EnumSet.of(FileVisitOption.FOLLOW_LINKS), PathVisitor)`,
                    // and return the attributes of the symlink if we can't read the attributes of the target of the symlink.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/Invokable.java

      public final boolean trySetAccessible() {
        // We can't call accessibleObject.trySetAccessible since that was added in Java 9 and this code
        // should work on Java 8. So we emulate it this way.
        try {
          accessibleObject.setAccessible(true);
          return true;
        } catch (Exception e) { // sneaky checked exception
          return false;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    Before asking GitHub Actions to build your project, it's useful to ensure that it builds locally.
    Adding the "CI" environment variable will emulate running the build on GitHub Actions.
    
    The following command achieves that:
    
    [listing.terminal.sample-command]
    ----
    $ CI=true ./gradlew build
    
    BUILD SUCCESSFUL
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    func (o *AuditWebhookOptions) enabled() bool {
    	return o != nil && o.ConfigFile != ""
    }
    
    // newUntruncatedBackend returns a webhook backend without the truncate options applied
    // this is done so that the same trucate backend can wrap both the webhook and dynamic backends
    func (o *AuditWebhookOptions) newUntruncatedBackend(customDial utilnet.DialFunc) (audit.Backend, error) {
    	groupVersion, _ := schema.ParseGroupVersion(o.GroupVersionString)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/doc.go

    # GOPPC64 >= power10 and its effects on Go asm
    
    When GOPPC64=power10 is used to compile a Go program for ppc64le/linux, MOV*, FMOV*, and ADD
    opcodes which would require 2 or more machine instructions to emulate a 32 bit constant, or
    symbolic reference are implemented using prefixed instructions.
    
    A user who wishes granular control over the generated machine code is advised to use Go asm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/math/big/floatconv_test.go

    		// compare with strconv.FormatFloat output if possible
    		// ('p' format is not supported by strconv.FormatFloat,
    		// and its output for 0.0 prints a biased exponent value
    		// as in 0p-1074 which makes no sense to emulate here)
    		if test.prec == 53 && test.format != 'p' && f.Sign() != 0 && (test.round == ToNearestEven || test.round == defaultRound) {
    			f64, acc := f.Float64()
    			if acc != Exact {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers_test.go

    	mt.Assert(EventTotals.Name(), map[string]string{"type": "update"}, monitortest.AtLeast(4))
    
    	waitForMockCalls()
    
    	assertPodNotAnnotated(t, client, pod)
    
    	// patch a test label to emulate a POD update event
    	_, err = client.Kube().CoreV1().Pods(pod.Namespace).Patch(ctx, pod.Name,
    		types.MergePatchType, []byte(`{"metadata":{"labels":{"test":"update"}}}`), metav1.PatchOptions{})
    	assert.NoError(t, err)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    // to the maximum of the passed sizes or maxCapacity, whichever
    // is smaller. Above maxCapacity decisions about allocation are left
    // to the Go runtime on append. This allows a caller to make an
    // educated guess about the potential size of the total list while
    // still avoiding overly aggressive initial allocation. If sizes
    // is empty maxCapacity will be used as the size to grow.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top