Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for importing (0.22 sec)

  1. src/runtime/mbitmap.go

    // findObject panics.
    //
    // refBase and refOff optionally give the base address of the object
    // in which the pointer p was found and the byte offset at which it
    // was found. These are used for error reporting.
    //
    // It is nosplit so it is safe for p to be a pointer to the current goroutine's stack.
    // Since p is a uintptr, it would not be adjusted if the stack were to move.
    //
    // findObject should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    	healthzServer       *healthcheck.ProxierHealthServer
    
    	ipvsScheduler string
    	// The following buffers are used to reuse memory and avoid allocations
    	// that are significantly impacting performance.
    	iptablesData     *bytes.Buffer
    	filterChainsData *bytes.Buffer
    	natChains        proxyutil.LineBuffer
    	filterChains     proxyutil.LineBuffer
    	natRules         proxyutil.LineBuffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    						})).
    						Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    							from.CallOrFail(t, echo.CallOptions{
    								Address: "serviceentry.istio.io", // host here is important to test ztunnel DNS resolution
    								Port:    to.PortForName("http"),
    								// sample response:
    								//
    								// ServiceVersion=v1
    								// ServicePort=8080
    								// Host=serviceentry.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Name: constants.WaypointGatewayClassName,
    		},
    		Spec: k8sv1.GatewayClassSpec{
    			ControllerName: constants.ManagedGatewayMeshController,
    		},
    	})
    
    	// ns is more important now that we want to be able to annotate ns for svc, wl waypoint selection
    	// always create the testNS enabled for ambient
    	a.ns.Create(&corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   testNS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	rangessyms []loader.Sym
    }
    
    // dwUnitPortion assembles the DWARF content for a given compilation
    // unit: debug_info, debug_lines, debug_ranges, debug_loc (debug_frame
    // is handled elsewhere). Order is important; the calls to writelines
    // and writepcranges below make updates to the compilation unit DIE,
    // hence they have to happen before the call to writeUnitInfo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

        return entryHelper.valueStrength().defaultEquivalence();
      }
    
      // ConcurrentMap methods
    
      @Override
      public boolean isEmpty() {
        /*
         * Sum per-segment modCounts to avoid mis-reporting when elements are concurrently added and
         * removed in one segment while checking another, in which case the table was never actually
         * empty at any point. (The sum ensures accuracy up through at least 1<<31 per-segment
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    			if ai.Algorithm.Equal(details.oid) {
    				return details.algo
    			}
    		}
    		return UnknownSignatureAlgorithm
    	}
    
    	// RSA PSS is special because it encodes important parameters
    	// in the Parameters.
    
    	var params pssParameters
    	if _, err := asn1.Unmarshal(ai.Parameters.FullBytes, &params); err != nil {
    		return UnknownSignatureAlgorithm
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Provides access to methods to create various kinds of model objects.
         *
         * @since 4.0
         */
        ObjectFactory getObjects();
    
        /**
         * Provides access to various important directories for this project.
         *
         * @since 4.1
         */
        ProjectLayout getLayout();
    
        /**
         * Creates a directory and returns a file pointing to it.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    		// We save a lot of calls over the network.
    		//
    		// This happens repeatedly for all objects that are created concurrently() avoiding this
    		// as a List() call is an important performance improvement.
    		//
    		// Spark based s3a committers are a  big enough use-case to have this optimization.
    		//
    		// A sample code to see the improvements is as follows, this sample code is
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        return entryHelper.valueStrength().defaultEquivalence();
      }
    
      // ConcurrentMap methods
    
      @Override
      public boolean isEmpty() {
        /*
         * Sum per-segment modCounts to avoid mis-reporting when elements are concurrently added and
         * removed in one segment while checking another, in which case the table was never actually
         * empty at any point. (The sum ensures accuracy up through at least 1<<31 per-segment
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top