Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,270 for jailed (0.15 sec)

  1. pkg/kube/multicluster/cluster.go

    		log.Warnf("remote cluster %s failed to sync", c.ID)
    		return
    	}
    	for _, h := range syncers {
    		if !kube.WaitForCacheSync("cluster"+string(c.ID), c.stop, h.HasSynced) {
    			log.Warnf("remote cluster %s failed to sync handler", c.ID)
    			return
    		}
    	}
    
    	c.initialSync.Store(true)
    }
    
    // Stop closes the stop channel, if is safe to be called multi times.
    func (c *Cluster) Stop() {
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.0.golden

    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    	// Fatal is equivalent to Log() followed by FailNow(). 
    	func (c *B) Fatal(args ...any)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/portworx/portworx_test.go

    	}
    	if _, err := os.Stat(path); err != nil {
    		if os.IsNotExist(err) {
    			t.Errorf("SetUp() failed, volume path not created: %s", path)
    		} else {
    			t.Errorf("SetUp() failed: %v", err)
    		}
    	}
    	if !fakeManager.attachCalled {
    		t.Errorf("Attach watch not called")
    	}
    	if !fakeManager.mountCalled {
    		t.Errorf("Mount watch not called")
    	}
    
    	// Test Unmounter
    	fakeManager = &fakePortworxManager{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 21 02:17:04 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/context/SingletonContext.java

                catch ( CIFSException e ) {
                    log.error("Failed to create singleton JCIFS context", e);
                }
            }
            return INSTANCE;
        }
    
    
        /**
         * This static method registers the SMB URL protocol handler which is
         * required to use SMB URLs with the <tt>java.net.URL</tt> class. If this
         * method is not called before attempting to create an SMB URL with the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 01 08:53:08 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/ProjectEvaluationListener.java

     */
    @EventScope(Scope.Build.class)
    public interface ProjectEvaluationListener {
        /**
         * This method is called immediately before a project is evaluated.
         *
         * @param project The which is to be evaluated. Never null.
         */
        void beforeEvaluate(Project project);
    
        /**
         * <p>This method is called when a project has been evaluated, and before the evaluated project is made available to
         * other projects.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/testing/http.go

    	if err != nil {
    		h.t.Logf("Failed to hijack client connection, host=%s: %v", req.Host, err)
    		return
    	}
    	defer conn.Close()
    
    	if err := brw.Flush(); err != nil {
    		h.t.Logf("Failed to flush pending writes to client, host=%s: %v", req.Host, err)
    		return
    	}
    	if _, err := io.Copy(sconn, io.LimitReader(brw, int64(brw.Reader.Buffered()))); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 14:58:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top