Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 242 for synthetic (0.15 sec)

  1. .idea/codeStyles/Project.xml

        <JetCodeStyleSettings>
          <option name="PACKAGES_TO_USE_STAR_IMPORTS">
            <value>
              <package name="org.gradle.kotlin.dsl" alias="false" withSubpackages="false" />
              <package name="kotlinx.android.synthetic" alias="false" withSubpackages="true" />
            </value>
          </option>
          <option name="NAME_COUNT_TO_USE_STAR_IMPORT" value="2147483647" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 31 14:47:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/Category.java

         * The library category
         */
        String LIBRARY = "library";
    
        /**
         * The platform category
         */
        String REGULAR_PLATFORM = "platform";
    
        /**
         * The enforced platform, usually a synthetic variant derived from the {@code platform}
         */
        String ENFORCED_PLATFORM = "enforced-platform";
    
        /**
         * The documentation category
         *
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 30 17:48:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

         * However, problems that are registered explicitly (e.g. deprecation warnings) will not have an associated exception.
         * In this case, the failure can be synthetic to provide the stack trace for the problem origin.
         * <p>
         * The failure can also be omitted due to limits. Its absence does not mean there was no exception causing the problem.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/net/HttpHeadersTest.java

        for (Field field : cls.getDeclaredFields()) {
          /*
           * Coverage mode generates synthetic fields.  If we ever add private
           * fields, they will cause similar problems, and we may want to switch
           * this check to isAccessible().
           */
          if (!field.isSynthetic() && field.getType() == String.class) {
            builder.add(field);
          }
        }
        return builder.build();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:08:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pilot/pkg/features/ambient.go

    		"If enabled, HBONE will be preferred when sending to destinations. ")
    
    	DefaultAllowFromWaypoint = registerAmbient(
    		"PILOT_AUTO_ALLOW_WAYPOINT_POLICY",
    		false, false,
    		"If enabled, zTunnel will receive synthetic authorization policies for each workload ALLOW the Waypoint's identity. "+
    			"Unless other ALLOW policies are created, this effectively denies traffic that doesn't go through the waypoint.")
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    	// struct field to eliminate contention
    	// between startWatching and processEvent
    	isInitialEventsEndBookmark bool
    }
    
    // parseKV converts a KeyValue retrieved from an initial sync() listing to a synthetic isCreated event.
    func parseKV(kv *mvccpb.KeyValue) *event {
    	return &event{
    		key:       string(kv.Key),
    		value:     kv.Value,
    		prevValue: nil,
    		rev:       kv.ModRevision,
    		isDeleted: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/reflect/TypeOf.java

                && !rawClass().isArray();
        }
    
        /**
         * Queries whether this object represents a synthetic type as defined by {@link Class#isSynthetic()}.
         *
         * @return true if this object represents a synthetic type.
         */
        public boolean isSynthetic() {
            return rawClass().isSynthetic();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. plugin/pkg/admission/certificates/util.go

    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/klog/v2"
    )
    
    // IsAuthorizedForSignerName returns true if 'info' is authorized to perform the given
    // 'verb' on the synthetic 'signers' resource with the given signerName.
    // If the user does not have permission to perform the 'verb' on the given signerName,
    // it will also perform an authorization check against {domain portion}/*, for example
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  9. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        #   /var/log/containers/synthetic-logger-0.25lps-pod_default_synth-lgr-997599971ee6366d4a5920d25b79286ad45ff37a74494f262e3bc98d909d0a7b.log
        # This results in the tag:
        #  var.log.containers.synthetic-logger-0.25lps-pod_default_synth-lgr-997599971ee6366d4a5920d25b79286ad45ff37a74494f262e3bc98d909d0a7b.log
        # where 'synthetic-logger-0.25lps-pod' is the pod name, 'default' is the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/DefaultLegacyTypesSupport.java

                    ClassLoaderUtils.define(classLoader, name, bytes);
                }
            } catch (Exception e) {
                throw new GradleException("Could not inject synthetic classes.", e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 12 21:33:19 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top