Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,006 for happen (0.22 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access_test.go

    			}
    		})
    	}
    }
    
    // TestGetQuotas ensures we do not have multiple LIST calls to the apiserver
    // in-flight at any one time. This is to ensure the issue described in #22422 do
    // not happen again.
    func TestGetQuotas(t *testing.T) {
    	var (
    		testNamespace1              = "test-a"
    		testNamespace2              = "test-b"
    		listCallCountTestNamespace1 int64
    		listCallCountTestNamespace2 int64
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

                // We already have the file in the build cache
                // Note that according to the documentation of `Files.move()`, whether this exception is thrown
                // is implementation specific: it can also happen that the target file gets overwritten, as if
                // `REPLACE_EXISTING` was specified. This seems to match the behavior exhibited by `File.renameTo()`.
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/runtime/netpoll_kqueue.go

    			// _EVFILT_READ event with EV_EOF set.
    			// Note that setting 'w' here just means that we
    			// will wake up a goroutine waiting to write;
    			// that goroutine will try the write again,
    			// and the appropriate thing will happen based
    			// on what that write returns (success, EPIPE, EAGAIN).
    			if ev.flags&_EV_EOF != 0 {
    				mode += 'w'
    			}
    		case _EVFILT_WRITE:
    			mode += 'w'
    		}
    		if mode != 0 {
    			var pd *pollDesc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/runtime/chan.go

    	// Instead of individual buffer entries, the race detector uses the
    	// c.buf as the only buffer entry.  This simplification prevents us from
    	// following the memory model's happens-before rules (rules that are
    	// implemented in racereleaseacquire).  Instead, we accumulate happens-before
    	// information in the synchronization object associated with c.buf.
    	if c.elemsize == 0 {
    		if sg == nil {
    			raceacquire(qp)
    			racerelease(qp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    		cidr    string
    		peer    string
    		trusted bool
    	}{
    		{
    			name:    "localhost client with port",
    			cidr:    "",
    			peer:    "127.0.0.1:9901",
    			trusted: true,
    		},
    		{
    			// Should never happen, added test case for testing it.
    			name:    "localhost client without port",
    			cidr:    "",
    			peer:    "127.0.0.1",
    			trusted: false,
    		},
    		{
    			name:    "external client without trusted cidr",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pkg/controlplane/apiserver/apis.go

    		}
    		if len(apiGroupInfo.VersionedResourcesStorageMap) == 0 {
    			// If we have no storage for any resource configured, this API group is effectively disabled.
    			// This can happen when an entire API group, version, or development-stage (alpha, beta, GA) is disabled.
    			klog.Infof("API group %q is not enabled, skipping.", groupName)
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    	var endpoints []string
    	for _, ev := range m.EndpointVersion {
    		endpoints = append(endpoints, ev.Endpoint)
    	}
    	return endpoints
    }
    
    func (m MockEtcdClient) getVersion(endpoint string) (string, error) {
    	for _, ev := range m.EndpointVersion {
    		if ev.Endpoint == endpoint {
    			return ev.Version, ev.Error
    		}
    	}
    	// Never should happen, unless tests having a problem.
    	return "", fmt.Errorf("No version found")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

        auto* var_ptr = GetVariableFromSession(var_op, handle.device(), mgr);
        if (!var_ptr) {
          // If no value in session, then just skip this variable.
          // This can happen if the variable is not saved in checkpoint.
          // For example, when the variable is created on every call.
          continue;
        }
        tensorflow::core::RefCountPtr<tensorflow::Var> var(var_ptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

        public Optional<Packaging> lookup(String id) {
            id = id.toLowerCase(Locale.ROOT);
            // TODO: we should be able to inject a Map<String, LifecycleMapping> directly,
            // however, SISU visibility filtering can only happen when an explicit
            // lookup is performed. The whole problem here is caused by "project extensions"
            // which are bound to a project's classloader, without any clear definition
            // of a "project scope"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// The protobuf message which contains LbEndpoint slice.
    	llbEndpoints endpoint.LocalityLbEndpoints
    }
    
    func (e *LocalityEndpoints) append(ep *model.IstioEndpoint, le *endpoint.LbEndpoint) {
    	e.istioEndpoints = append(e.istioEndpoints, ep)
    	e.llbEndpoints.LbEndpoints = append(e.llbEndpoints.LbEndpoints, le)
    }
    
    func (e *LocalityEndpoints) refreshWeight() {
    	var weight *wrapperspb.UInt32Value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top