Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,498 for jailed (0.11 sec)

  1. src/net/splice_linux_test.go

    		}
    	}
    
    	// poll.Splice is expected to be called when the source is not
    	// a wrapper or the destination is TCPConn.
    	if tc.limitReadSize == 0 || tc.downNet == "tcp" {
    		// We should have called poll.Splice with the right file descriptor arguments.
    		if n > 0 && !hook.called {
    			t.Fatal("expected poll.Splice to be called")
    		}
    
    		verifySpliceFds(t, serverDown, hook, "dst")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/istio.go

    	var i Instance
    	if err := ctx.GetResource(&i); err != nil {
    		return nil, err
    	}
    	return i, nil
    }
    
    // GetOrFail returns the Istio component from the context. If there is none the test is failed.
    func GetOrFail(t test.Failer, ctx resource.Context) Instance {
    	t.Helper()
    	i, err := Get(ctx)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return i
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    }
    
    // OnServiceSynced is called once all the initial event handlers were called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationContext.java

    public interface BuildOperationContext {
        /**
         * Marks the build operation as failed, without throwing an exception out of the operation.
         *
         * If called with non-null, will suppress any exception thrown by the operation being used as the operation failure.
         *
         * @param failure Can be null, in which case this method does nothing.
         */
        void failed(@Nullable Throwable failure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/curl/CurlRequest.java

            if (bodyStream != null) {
                throw new CurlException("body method is already called.");
            }
            this.body = body;
            return this;
        }
    
        public CurlRequest body(final InputStream stream) {
            if (body != null) {
                throw new CurlException("body method is already called.");
            }
            this.bodyStream = stream;
            return this;
        }
    
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Sun Feb 12 12:21:25 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. pkg/test/framework/config.go

    				return fmt.Errorf("failed applying YAML files %v to ns %s in cluster %s: %v", yamlFiles, ns, cl.Name(), err)
    			}
    			c.ctx.CleanupStrategy(cleanupStrategy, func() {
    				scopes.Framework.Debugf("Deleting from %s: %s", cl.StableName(), strings.Join(yamlFiles, ", "))
    				if err := cl.DeleteYAMLFiles(ns, yamlFiles...); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/certcontroller.go

    	certChain, keyPEM, _, err = chiron.GenKeyCertK8sCA(s.kubeClient.Kube(),
    		strings.Join(s.dnsNames, ","), "", signerName, true, SelfSignedCACertTTL.Get())
    	if err != nil {
    		return fmt.Errorf("failed generating key and cert by kubernetes: %v", err)
    	}
    	caBundle, err = s.RA.GetRootCertFromMeshConfig(signerName)
    	if err != nil {
    		return err
    	}
    
    	// MeshConfig:Add callback for mesh config update
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. pkg/credentialprovider/plugin/plugin.go

    	p.Lock()
    	if p.clock.Now().After(p.lastCachePurge.Add(cachePurgeInterval)) {
    		// NewExpirationCache purges expired entries when List() is called
    		// The expired entry in the cache is removed only when Get or List called on it.
    		// List() is called on some interval to remove those expired entries on which Get is never called.
    		_ = p.cache.List()
    		p.lastCachePurge = p.clock.Now()
    	}
    	p.Unlock()
    
    	obj, found, err := p.cache.GetByKey(image)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/exceptions/ComponentVerificationException.java

        }
    
        /**
         * Creates a new exception when a component cannot be verified - because of some reason.
         *
         * @param component the component which failed the verification
         * @param causeErrorFormatter a consumer, which will be called with a {@link TreeFormatter}, and can put extra details what happened
         */
        public ComponentVerificationException(ModuleComponentIdentifier component, Consumer<TreeFormatter> causeErrorFormatter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 15:00:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top