Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for _privates (0.93 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

        private final Logger logger = LoggerFactory.getLogger(getClass());
        private final ModelBuilder modelBuilder;
        private final ModelProcessor modelProcessor;
        private final ProjectBuildingHelper projectBuildingHelper;
        private final MavenRepositorySystem repositorySystem;
        private final org.eclipse.aether.RepositorySystem repoSystem;
        private final RemoteRepositoryManager repositoryManager;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // CHECK: return %[[CALL]]
    
      func.func private @composite_dot_general_fn(%arg0: tensor<1x2xf32>, %arg1: tensor<2x3xf32>) -> tensor<1x3xf32> attributes {_from_xla_call_module} {
        %0 = stablehlo.dot_general %arg0, %arg1, contracting_dims = [1] x [0] : (tensor<1x2xf32>, tensor<2x3xf32>) -> tensor<1x3xf32>
        return %0 : tensor<1x3xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

          return c <= '\u007f';
        }
      }
    
      /** Implementation that matches characters that fall within multiple ranges. */
      private static class RangesMatcher extends CharMatcher {
    
        private final String description;
        private final char[] rangeStarts;
        private final char[] rangeEnds;
    
        RangesMatcher(String description, char[] rangeStarts, char[] rangeEnds) {
          this.description = description;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

        private String netbiosName = null;
    
        private CIFSContext transportContext;
    
        private CredentialsInternal credentials;
        private byte[] sessionKey;
        private boolean extendedSecurity;
    
        private final AtomicLong usageCount = new AtomicLong(1);
        private final AtomicBoolean transportAcquired = new AtomicBoolean(true);
    
        private long sessionId;
    
        private SMBSigningDigest digest;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedMap<K, V> implements BiMap<K, V>, Serializable {
        @CheckForNull private transient Set<V> valueSet;
        @RetainedWith @CheckForNull private transient BiMap<V, K> inverse;
    
        private SynchronizedBiMap(
            BiMap<K, V> delegate, @CheckForNull Object mutex, @CheckForNull BiMap<V, K> inverse) {
          super(delegate, mutex);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Synchronized.java

          extends SynchronizedMap<K, V> implements BiMap<K, V>, Serializable {
        @CheckForNull private transient Set<V> valueSet;
        @RetainedWith @CheckForNull private transient BiMap<V, K> inverse;
    
        private SynchronizedBiMap(
            BiMap<K, V> delegate, @CheckForNull Object mutex, @CheckForNull BiMap<V, K> inverse) {
          super(delegate, mutex);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

        private static Logger log = LoggerFactory.getLogger(SmbTransportImpl.class);
    
        private boolean smb2 = false;
        private InetAddress localAddr;
        private int localPort;
        private Address address;
        private Socket socket;
        private int port;
        private final AtomicLong mid = new AtomicLong();
        private OutputStream out;
        private InputStream in;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

    // CHECK: %[[MAX:.*]] = stablehlo.maximum %[[XLA_CALL_MODULE]], %[[CONST_1]]
    // CHECK: return %[[MAX]] : tensor<1x3x3x4xf32>
    // CHECK: }
    
    // CHECK-LABEL: private @composite_conv_fn_1
    // CHECK-NOT: private @composite_conv_with_relu_fn_1
    
    // -----
    
    // CHECK-LABEL: @conv_with_relu6_fn(
    // CHECK-SAME:                    %[[ARG_0:.*]]: tensor<1x3x3x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

                this.b = b;
            }
        }
    
        public static class BeanWithVariousGettersAndSetters extends Bean {
            private int primitive;
            private boolean bool;
            private String finalGetter;
            private Integer writeOnly;
            private String overloaded;
    
            public int getPrimitive() {
                return primitive;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/MapMakerInternalMap.java

          implements StrongValueEntry<K, V, StrongKeyStrongValueEntry<K, V>> {
        @CheckForNull private volatile V value = null;
    
        private StrongKeyStrongValueEntry(K key, int hash) {
          super(key, hash);
        }
    
        @Override
        @CheckForNull
        public final V getValue() {
          return value;
        }
    
        private static final class LinkedStrongKeyStrongValueEntry<K, V>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top