Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for getWtp (0.49 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/TaskContainerDelegate.kt

        override fun getAsMap(): SortedMap<String, Task> =
            delegate.asMap
    
        override fun getNames(): SortedSet<String> =
            delegate.names
    
        override fun getAt(name: String): Task =
            delegate.getAt(name)
    
        override val size: Int
            get() = delegate.size
    
        override fun remove(element: Task): Boolean =
            delegate.remove(element)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/virtualservice/jwtclaimroute.go

    				c.Report(gvk.VirtualService, m)
    			}
    			return true
    		})
    	}
    }
    
    func routeBasedOnJWTClaimKey(vs *v1alpha3.VirtualService) string {
    	for _, httpRoute := range vs.GetHttp() {
    		for _, match := range httpRoute.GetMatch() {
    			for key := range match.GetHeaders() {
    				if jwt.ToRoutingClaim(key).Match {
    					return key
    				}
    			}
    			for key := range match.GetWithoutHeaders() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractVersionRangeResolveIntegrationTest.groovy

            def resolvedFile = resolvedFiles.get(0)
            assert resolvedFile.startsWith('foo-')
            assert resolvedFile.endsWith('.jar')
            def resolvedVersion = (resolvedFile =~ /\d+/).getAt(0)
            resolvedVersion
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskCollection.java

         * @see #whenTaskAdded(Action)
         */
        @SuppressWarnings("UnusedDeclaration")
        void whenTaskAdded(Closure closure);
    
        /**
         * {@inheritDoc}
         */
        @Override
        T getAt(String name) throws UnknownTaskException;
    
        /**
         * Locates a task by name, without triggering its creation or configuration, failing if there is no such object.
         *
         *
         * @param name The task name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDocOptions.java

            this.footer = footer;
        }
    
        /**
         * Returns the HTML text to appear in the top text for each page.
         */
        @Nullable @Optional @Input
        public String getTop() {
            return top;
        }
    
        /**
         * Sets the HTML text to appear in the top text for each page.
         */
        public void setTop(@Nullable String top) {
            this.top = top;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/SortedMapNavigationTester.java

      private SortedMap<K, V> navigableMap;
      private Entry<K, V> a;
      private Entry<K, V> c;
    
      @Override
      public void setUp() throws Exception {
        super.setUp();
        navigableMap = (SortedMap<K, V>) getMap();
        List<Entry<K, V>> entries =
            Helpers.copyToList(
                getSubjectGenerator()
                    .getSampleElements(getSubjectGenerator().getCollectionSize().getNumElements()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

         */
        private void configureAgentDependencies(JacocoAgentJar jacocoAgentJar, final JacocoPluginExtension extension) {
            final Configuration config = project.getConfigurations().getAt(AGENT_CONFIGURATION_NAME);
            jacocoAgentJar.setAgentConf(config);
            config.defaultDependencies(dependencies -> dependencies.add(project.getDependencies().create("org.jacoco:org.jacoco.agent:" + extension.getToolVersion())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyExtensions.java

         *
         * @param self the {@link MapProperty}
         * @param key the key
         * @return a {@link Provider} for the value
         */
        public static <K, V> Provider<V> getAt(MapProperty<K, V> self, K key) {
            return self.getting(key);
        }
    
        /**
         * Adds a map entry to the property value.
         *
         * <p>Extension method to support the subscript operator in Groovy.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/passes/canonicalize.cc

        APInt lower_bound, upper_bound, step;
        if (!matchPattern(for_op.getLowerBound(), m_ConstantInt(&lower_bound)) ||
            !matchPattern(for_op.getUpperBound(), m_ConstantInt(&upper_bound)) ||
            !matchPattern(for_op.getStep(), m_ConstantInt(&step))) {
          return failure();
        }
        uint64_t trip_count = (upper_bound - lower_bound).sdiv(step).getZExtValue();
        if (trip_count <= 0) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. security/pkg/credentialfetcher/plugin/gce.go

    		}
    	}
    }
    
    func (p *GCEPlugin) shouldRotate(now time.Time) bool {
    	p.tokenMutex.RLock()
    	defer p.tokenMutex.RUnlock()
    
    	if p.tokenCache == "" {
    		return true
    	}
    	exp, err := util.GetExp(p.tokenCache)
    	// When fails to get expiration time from token, always refresh the token.
    	if err != nil || exp.IsZero() {
    		return true
    	}
    	rotate := now.After(exp.Add(-gracePeriod))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top