Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 280 for emberi (0.3 sec)

  1. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller.go

    	// shared informer passed to NewController.
    	endpointsLister corelisters.EndpointsLister
    	// endpointsSynced returns true if the endpoints shared informer has been
    	// synced at least once. Added as a member to the struct to allow injection
    	// for testing.
    	endpointsSynced cache.InformerSynced
    
    	// endpointSliceLister is able to list/get endpoint slices and is populated
    	// by the shared informer passed to NewController
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 23:18:31 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    just getting started, GitHub has a
    [how-to](https://help.github.com/articles/using-pull-requests/).
    
    TensorFlow team members will be assigned to review your pull requests. Once the
    pull requests are approved and pass continuous integration checks, a TensorFlow
    team member will apply `ready to pull` label to your change. This means we are
    working on getting your pull request submitted to our internal repository. After
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/debug/macho/file.go

    	Prot    uint32
    	Nsect   uint32
    	Flag    uint32
    }
    
    // A Segment represents a Mach-O 32-bit or 64-bit load segment command.
    type Segment struct {
    	LoadBytes
    	SegmentHeader
    
    	// Embed ReaderAt for ReadAt method.
    	// Do not embed SectionReader directly
    	// to avoid having Read and Seek.
    	// If a client wants Read and Seek it must use
    	// Open() to avoid fighting over the seek offset
    	// with other clients.
    	io.ReaderAt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TopKSelector.java

        for (int i = 0; i < other.bufferSize; i++) {
          this.offer(uncheckedCastNullableTToT(other.buffer[i]));
        }
        return this;
      }
    
      /**
       * Adds each member of {@code elements} as a candidate for the top {@code k} elements. This
       * operation takes amortized linear time in the length of {@code elements}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. docs/sts/ldap.md

    - On finding the user's info, MinIO verifies the login credentials with the AD/LDAP server.
    - MinIO optionally queries the AD/LDAP server for a list of groups that the user is a member of.
    - MinIO then checks if there are any policies [explicitly associated](#managing-usergroup-access-policy) with the user or their groups.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. docs/pt/docs/async.md

    Mesmo embora a especificação principal para web assíncrono em Python (ASGI) foi desenvolvida no Django, para adicionar suporte para WebSockets.
    
    Esse tipo de assincronicidade é o que fez NodeJS popular (embora NodeJS não seja paralelo) e que essa seja a força do Go como uma linguagem de programa.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

                   // owns the copy.
    };
    
    // Adapts a native array to a read-only STL-style container.  Instead
    // of the complete STL container concept, this adaptor only implements
    // members useful for Google Mock's container matchers.  New members
    // should be added as needed.  To simplify the implementation, we only
    // support Element being a raw type (i.e. having no top-level const or
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

                is KotlinClassStubImpl -> {
                    indexClassOrObject(stub.psi)
                    // member functions and properties
                    stub.childrenStubs.forEach(::indexStub)
                }
                is KotlinObjectStubImpl -> {
                    indexClassOrObject(stub.psi)
                    // member functions and properties
                    stub.childrenStubs.forEach(::indexStub)
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			if overloadId == "cidr_ip" {
    				// The IP member of the CIDR object is just accessing a field.
    				// Nominal cost.
    				return &checker.CallEstimate{CostEstimate: checker.CostEstimate{Min: 1, Max: 1}}
    			}
    
    			sz := l.sizeEstimate(args[0])
    			return &checker.CallEstimate{CostEstimate: sz.MultiplyByCostFactor(common.StringTraversalCostFactor)}
    		} else if target != nil {
    			// The IP member of a CIDR is a just accessing a field, nominal cost.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/runtime/type.go

    		racerelease(unsafe.Pointer(&reflectOffs.lock))
    	}
    	unlock(&reflectOffs.lock)
    }
    
    // resolveNameOff should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname resolveNameOff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top