Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 761 for proper (0.18 sec)

  1. src/cmd/internal/obj/x86/evex.go

    const (
    	rcRNSAE = 0 // Round towards nearest
    	rcRDSAE = 1 // Round towards -Inf
    	rcRUSAE = 2 // Round towards +Inf
    	rcRZSAE = 3 // Round towards zero
    	rcUnset = 4
    )
    
    // newEVEXSuffix returns proper zero value for evexSuffix.
    func newEVEXSuffix() evexSuffix {
    	return evexSuffix{rounding: rcUnset}
    }
    
    // evexSuffixMap maps obj.X86suffix to its decoded version.
    // Filled during init().
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. plugin/pkg/admission/defaulttolerationseconds/admission.go

    	if attributes.GetResource().GroupResource() != api.Resource("pods") {
    		return nil
    	}
    
    	if len(attributes.GetSubresource()) > 0 {
    		// only run the checks below on pods proper and not subresources
    		return nil
    	}
    
    	pod, ok := attributes.GetObject().(*api.Pod)
    	if !ok {
    		return errors.NewBadRequest(fmt.Sprintf("expected *api.Pod but got %T", attributes.GetObject()))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 06 04:56:21 UTC 2019
    - 4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/CloseablesTest.java

    import java.io.Closeable;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.Reader;
    import junit.framework.TestCase;
    
    /**
     * Unit tests for {@link Closeables}.
     *
     * <p>Checks proper closing behavior, and ensures that IOExceptions on Closeable.close() are not
     * propagated out from the {@link Closeables#close} method if {@code swallowException} is true.
     *
     * @author Michael Lancaster
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

            i = inc(i);
          }
          return false;
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Returns an array containing all of the elements in this queue, in proper sequence.
       *
       * <p>The returned array will be "safe" in that no references to it are maintained by this queue.
       * (In other words, this method must allocate a new array). The caller is thus free to modify the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       *     {@code double}) in the proper order.
       */
      private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException {
        s.defaultWriteObject();
    
        // Write out array length
        int length = length();
        s.writeInt(length);
    
        // Write out all elements in the proper order.
        for (int i = 0; i < length; i++) {
          s.writeDouble(get(i));
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

            i = inc(i);
          }
          return false;
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Returns an array containing all of the elements in this queue, in proper sequence.
       *
       * <p>The returned array will be "safe" in that no references to it are maintained by this queue.
       * (In other words, this method must allocate a new array). The caller is thus free to modify the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  7. src/image/png/testdata/pngsuite/README.original

    chunks, etc.
    
    The images in this directory represent the basic PNG color-types:
    grayscale (1-16 bit deep), full color (8 or 16 bit), paletted
    (1-8 bit) and grayscale or color images with alpha channel. You
    can use them to test the proper functioning of PNG software.
    
        filename      depth type
        ------------ ------ --------------
        basn0g01.png  1-bit grayscale
        basn0g02.png  2-bit grayscale
        basn0g04.png  4-bit grayscale
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaries.java

            // So here we are just closing over the safely reusable things and then using proper dependencies for the tool chain registry.
            // Unfortunately, we can't do it in the create action because that would fire _after_ @Defaults rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

                  name: var-lib-calico
                  readOnly: false
                - mountPath: /run/xtables.lock
                  name: xtables-lock
                  readOnly: false
          volumes:
            # Used to ensure proper kmods are installed.
            - name: lib-modules
              hostPath:
                path: /lib/modules
            # Mount in the Felix config file from the host.
            - name: etc-calico
              hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedInputAccessListener.kt

    val allowedProperties = setOf(
        "os.name",
        "os.version",
        "os.arch",
        // TODO(https://github.com/gradle/gradle/issues/18432) Remove this from the list when a proper support for the modifications is in place.
        "java.awt.headless", // Some popular plugins modify this property at runtime.
        "java.version",
        "java.version.date",
        "java.vendor",
        "java.vendor.url",
        "java.vendor.version",
        "java.specification.version",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top