Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 483 for gather (0.14 sec)

  1. src/time/format.go

    			hr, _, err = getnum(hour, true)
    			if err == nil {
    				mm, _, err = getnum(min, true)
    			}
    			if err == nil {
    				ss, _, err = getnum(seconds, true)
    			}
    
    			// The range test use > rather than >=,
    			// as some people do write offsets of 24 hours
    			// or 60 minutes or 60 seconds.
    			if hr > 24 {
    				rangeErrString = "time zone offset hour"
    			}
    			if mm > 60 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Contextualizable;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.graph.DependencyFilter;
    import org.eclipse.aether.repository.RemoteRepository;
    import org.eclipse.aether.resolution.ArtifactResult;
    import org.eclipse.aether.resolution.DependencyResult;
    import org.eclipse.aether.util.filter.AndDependencyFilter;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. pkg/config/constants/constants.go

    	AmbientRedirection = "ambient.istio.io/redirection"
    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    	// The presence of this annotation with this specific value indicates the pod is captured.
    	// Anything else indicates it is not.
    	AmbientRedirectionEnabled = "enabled"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

    import java.util.Optional;
    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.concurrent.Future;
    
    import static java.util.Optional.empty;
    import static org.gradle.internal.Either.left;
    import static org.gradle.internal.Either.right;
    import static org.gradle.internal.UncheckedException.unchecked;
    
    public class DefaultCachedClasspathTransformer implements CachedClasspathTransformer, Closeable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/StatefulListener.java

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.service.scopes;
    
    import java.lang.annotation.ElementType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStableConfigurationCacheIntegrationTest.groovy

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                addListener(fingerprintWriter)
                // Continue with the current spool file, rather than starting a new one
                return Writing(fingerprintWriter, this.buildScopedSpoolFile, this.projectScopedSpoolFile)
            }
    
            override fun pause(): WritingState {
                return this
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/package-info.java

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 695 bytes
    - Viewed (0)
  9. pilot/pkg/networking/util/util.go

    	case *networking.StringMatch_Prefix:
    		return &matcher.StringMatcher{MatchPattern: &matcher.StringMatcher_Prefix{Prefix: m.Prefix}}
    	case *networking.StringMatch_Regex:
    		return &matcher.StringMatcher{
    			MatchPattern: &matcher.StringMatcher_SafeRegex{
    				SafeRegex: &matcher.RegexMatcher{
    					Regex: m.Regex,
    				},
    			},
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DisabledAgentStatus.java

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.instrumentation.agent;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 817 bytes
    - Viewed (0)
Back to top