Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 220 for uninitialized (0.2 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompileTimeConstantProvider.kt

            if (mode == KtConstantEvaluationMode.CONSTANT_EXPRESSION_EVALUATION) {
                // TODO: how to _not_ evaluate expressions with a compilation error, e.g., uninitialized property access
                if (constant?.usesNonConstValAsConstant == true) return null
            }
            return constant?.toConstantValue(TypeUtils.NO_EXPECTED_TYPE)?.toKtConstantValue()
        }
    
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Tue Mar 28 08:17:37 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/sds/util.go

    		if err != nil {
    			return nil, fmt.Errorf("failed building warming secret %s: %v",
    				activeSecret.Name, err)
    		}
    		if activeSecret.VersionInfo == "uninitialized" {
    			secret.State = "UNINITIALIZED"
    		}
    		proxySecretItems = append(proxySecretItems, secret)
    	}
    	return proxySecretItems, nil
    }
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Jun 06 15:14:48 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/AbstractBiMap.java

        extends ForwardingMap<K, V> implements BiMap<K, V>, Serializable {
    
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (lateinit)
      private transient Map<K, V> delegate;
    
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (lateinit)
      @RetainedWith
      transient AbstractBiMap<V, K> inverse;
    
      /** Package-private constructor for creating a map-backed bimap. */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractBiMap.java

        extends ForwardingMap<K, V> implements BiMap<K, V>, Serializable {
    
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (lateinit)
      private transient Map<K, V> delegate;
    
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (lateinit)
      @RetainedWith
      transient AbstractBiMap<V, K> inverse;
    
      /** Package-private constructor for creating a map-backed bimap. */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 14.6K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/values.yaml

          # This requires no RBAC privilege, but does require `securityContext.privileged/CAP_SYS_ADMIN`.
          repairPods: true
    
          initContainerName: "istio-validation"
    
          brokenPodLabelKey: "cni.istio.io/uninitialized"
          brokenPodLabelValue: "true"
    
        # Set to `type: RuntimeDefault` to use the default profile if available.
        seccompProfile: {}
    
        resources:
          requests:
            cpu: 100m
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 5.1K bytes
    - Viewed (1)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
      }
    
      public void testTransform_ErrorAfterCancellation() throws Exception {
        class Transformer implements Function<Object, Object> {
          @SuppressWarnings("nullness:initialization.field.uninitialized")
          ListenableFuture<Object> output;
    
          @Override
          public Object apply(Object input) {
            output.cancel(false);
            throw new MyError();
          }
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/HashBiMap.java

       * they are not initialized inline in the constructor, they are initialized from init(), which the
       * constructor calls (as does readObject()).
       */
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (see above)
      private transient @Nullable BiEntry<K, V>[] hashTableKToV;
    
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (see above)
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 24.5K bytes
    - Viewed (0)
  8. api/go1.19.txt

    pkg debug/pe, const IMAGE_SCN_CNT_CODE ideal-int #51868
    pkg debug/pe, const IMAGE_SCN_CNT_INITIALIZED_DATA = 64 #51868
    pkg debug/pe, const IMAGE_SCN_CNT_INITIALIZED_DATA ideal-int #51868
    pkg debug/pe, const IMAGE_SCN_CNT_UNINITIALIZED_DATA = 128 #51868
    pkg debug/pe, const IMAGE_SCN_CNT_UNINITIALIZED_DATA ideal-int #51868
    pkg debug/pe, const IMAGE_SCN_LNK_COMDAT = 4096 #51868
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  9. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
      }
    
      public void testTransform_ErrorAfterCancellation() throws Exception {
        class Transformer implements Function<Object, Object> {
          @SuppressWarnings("nullness:initialization.field.uninitialized")
          ListenableFuture<Object> output;
    
          @Override
          public Object apply(Object input) {
            output.cancel(false);
            throw new MyError();
          }
        }
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    	registerBooleanParameter(constants.RepairLabelPods, false, "Controller will label pods when detecting pod broken by race condition")
    	registerStringParameter(constants.RepairLabelKey, "cni.istio.io/uninitialized",
    		"The key portion of the label which will be set by the race repair if label pods is true")
    	registerStringParameter(constants.RepairLabelValue, "true",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top