Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 479 for Street (0.44 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

    import org.eclipse.aether.resolution.ArtifactRequest;
    import org.eclipse.aether.util.artifact.ArtifactIdUtils;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A class building reverse tree using {@link CollectStepData} trace data provided in {@link RepositoryEvent}
     * events fired during collection.
     *
     * @since 3.9.0
     */
    class ReverseTreeRepositoryListener extends AbstractRepositoryListener {
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    				tree.InsertPrefix(prefix, serviceCIDR.Name)
    			}
    		}
    	}
    	r.muTree.Lock()
    	defer r.muTree.Unlock()
    	r.tree = tree
    	return nil
    }
    
    func newIPAddress(name string, svc *v1.Service) *networkingv1alpha1.IPAddress {
    	family := string(v1.IPv4Protocol)
    	if netutils.IsIPv6String(name) {
    		family = string(v1.IPv6Protocol)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_block.go

    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), csiTimeout)
    	defer cancel()
    
    	csiClient, err := m.csiClientGetter.Get()
    	if err != nil {
    		// Treat the absence of the CSI driver as a transient error
    		// See https://github.com/kubernetes/kubernetes/issues/120268
    		return "", volumetypes.NewTransientOperationFailure(log("blockMapper.SetUpDevice failed to get CSI client: %v", err))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Uninterruptibles.java

       *
       * <p>Similar methods:
       *
       * <ul>
       *   <li>To retrieve a result from a {@code Future} that is already done, use {@link
       *       Futures#getDone Futures.getDone}.
       *   <li>To treat {@link InterruptedException} uniformly with other exceptions, use {@link
       *       Futures#getChecked(Future, Class) Futures.getChecked}.
       *   <li>To get uninterruptibility and remove checked exceptions, use {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/InterceptGroovyCallsGenerator.java

        }
    
        private static CodeBlock generateCodeFromInterceptorSignatureTree(SignatureTree tree) {
            CodeBlock.Builder result = CodeBlock.builder();
            result.addStatement("$T receiver = invocation.getReceiver()", Object.class);
    
            new CodeGeneratingSignatureTreeVisitor(result).visit(tree, -1);
    
            result.addStatement("return invocation.callOriginal()");
            return result.build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/abt/avlint32_test.go

    		}
    		for j, old := range history {
    			s, i := old.wellFormed()
    			if s != "" {
    				te.Errorf("Tree consistency problem %s at old after DeleteMin, old=\n%stree=\n%v", s, old.DebugString(), t.DebugString())
    				return
    			}
    			if i != len(x)-j {
    				te.Errorf("Wrong old tree size %v, expected %v after DeleteMin, old=\n%vtree\n%v", i, len(x)-j, old.DebugString(), t.DebugString())
    				return
    			}
    		}
    		size--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    	case len(originalData) == 0:
    		// TODO: treat like decoding {} from JSON with defaulting
    		return nil, nil, fmt.Errorf("empty data")
    	case len(originalData) < prefixLen || !bytes.Equal(s.prefix, originalData[:prefixLen]):
    		return nil, nil, fmt.Errorf("provided data does not appear to be a protobuf message, expected prefix %v", s.prefix)
    	case len(originalData) == prefixLen:
    		// TODO: treat like decoding {} from JSON with defaulting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/ld_test.go

    		fmt.Fprintf(buf, "\tADD $0, X0, X0\n")
    	}
    	fmt.Fprintf(buf, "\tCALL b(SB)\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT b(SB),$0-0\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT c(SB),$0-0\n")
    	fmt.Fprintf(buf, "\tCALL b(SB)\n")
    	fmt.Fprintf(buf, "\tRET\n")
    	fmt.Fprintf(buf, "TEXT ·d(SB),0,$0-0\n")
    	for i := 0; i < 1<<17; i++ {
    		fmt.Fprintf(buf, "\tADD $0, X0, X0\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. LICENSES/vendor/github.com/google/btree/LICENSE

    = vendor/github.com/google/btree licensed under: =
    
    
                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 11.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            when:
            def fileCollection = project.files('path', action)
    
            then:
            fileCollection.builtBy == ['something'] as Set
        }
    
        def "can create file tree configured with an Action"() {
            given:
            def project = project('root', null, Stub(GradleInternal))
            def action = { fileTree -> fileTree.builtBy('something') } as Action<ConfigurableFileTree>
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top