Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 60 for importing (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/internal/obj/loong64/asm.go

    }
    
    func IsAtomicInst(as obj.As) bool {
    	_, ok := atomicInst[as]
    
    	return ok
    }
    
    // pcAlignPadLength returns the number of bytes required to align pc to alignedValue,
    // reporting an error if alignedValue is not a power of two or is out of range.
    func pcAlignPadLength(ctxt *obj.Link, pc int64, alignedValue int64) int {
    	if !((alignedValue&(alignedValue-1) == 0) && 8 <= alignedValue && alignedValue <= 2048) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    							l.SetSymPkg(sym, lib.Pkg)
    						}
    					}
    				}
    			}
    			lib.Textp = nil
    			lib.DupTextSyms = nil
    		}
    	}
    
    	return textp
    }
    
    // ErrorReporter is a helper class for reporting errors.
    type ErrorReporter struct {
    	ldr              *Loader
    	AfterErrorAction func()
    }
    
    // Errorf method logs an error message.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    		return q.head[q.headPos]
    	}
    	if len(q.tail) > 0 {
    		return q.tail[0]
    	}
    	return nil
    }
    
    // cleanFrontNotWaiting pops any wantConns that are no longer waiting from the head of the
    // queue, reporting whether any were popped.
    func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
    	for {
    		w := q.peekFront()
    		if w == nil || w.waiting() {
    			return cleaned
    		}
    		q.popFront()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    // people are used to seeing in C.  For generated Go code, such as
    // package syscall's data structures, we drop a common prefix
    // (so sec, usec, which will get turned into Sec, Usec for exporting).
    func fieldPrefix(fld []*ast.Field) string {
    	prefix := ""
    	for _, f := range fld {
    		for _, n := range f.Names {
    			// Ignore field names that don't have the prefix we're
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top