Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,428 for halted (0.2 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

            given:
            def called = false
            def action = filter(action { called = true }, spec { true })
    
            when:
            action.execute "object"
    
            then:
            called
        }
    
        def "filtered action doesnt fire for not matching"() {
            given:
            def called = false
            def action = filter(action { called = true }, spec { false })
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/net/http/httptrace/trace.go

    	// GotFirstResponseByte is called when the first byte of the response
    	// headers is available.
    	GotFirstResponseByte func()
    
    	// Got100Continue is called if the server replies with a "100
    	// Continue" response.
    	Got100Continue func()
    
    	// Got1xxResponse is called for each 1xx informational response header
    	// returned before the final non-1xx response. Got1xxResponse is called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/crd_finder_test.go

    	}
    	if called != 1 {
    		t.Fatalf("First call should call the getter, has called = %v", called)
    	}
    
    	_, err = finder.HasCRD(schema.GroupKind{Group: "", Kind: "Pod"})
    	if err != nil {
    		t.Fatalf("Failed to call HasCRD: %v", err)
    	}
    	if called != 1 {
    		t.Fatalf("Second call should NOT call the getter, has called = %v", called)
    	}
    }
    
    func TestCRDFinderErrors(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/query/QueryProcessorTest.java

                    calledFirst.set(true);
                    assertFalse(called.get());
                    QueryBuilder builder = chain.execute(context, query, boost);
                    assertTrue(called.get());
                    return builder;
                }
            });
            queryBuilder = queryProcessor.execute(context, query, 1.0f);
            assertTrue(called.get());
            assertTrue(calledFirst.get());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/proxy/metaproxier/meta_proxier.go

    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *metaProxier) OnServiceDelete(service *v1.Service) {
    	proxier.ipv4Proxier.OnServiceDelete(service)
    	proxier.ipv6Proxier.OnServiceDelete(service)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

     */
    public interface FilePropertyVisitor {
    
        /**
         * Called once per file property.
         * <p>
         * Only getProperty*() state methods may be called during.
         */
        void preProperty(VisitState state);
    
        /**
         * Called for each root of the current property.
         * <p>
         * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
         */
        void preRoot(VisitState state);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. cni/pkg/ipset/nldeps_mock.go

    func (m *MockedIpsetDeps) ipsetIPHashCreate(name string, v6 bool) error {
    	args := m.Called(name, v6)
    	return args.Error(0)
    }
    
    func (m *MockedIpsetDeps) destroySet(name string) error {
    	args := m.Called(name)
    	return args.Error(0)
    }
    
    func (m *MockedIpsetDeps) addIP(name string, ip netip.Addr, ipProto uint8, comment string, replace bool) error {
    	args := m.Called(name, ip, ipProto, comment, replace)
    	return args.Error(0)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    // If called multiple times, the Type field is set to the value of the last call.
    func (b *JSONSchemaPropsApplyConfiguration) WithType(value string) *JSONSchemaPropsApplyConfiguration {
    	b.Type = &value
    	return b
    }
    
    // WithFormat sets the Format field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. src/net/rpc/client.go

    	codec ClientCodec
    
    	reqMutex sync.Mutex // protects following
    	request  Request
    
    	mutex    sync.Mutex // protects following
    	seq      uint64
    	pending  map[uint64]*Call
    	closing  bool // user has called Close
    	shutdown bool // server has told us to stop
    }
    
    // A ClientCodec implements writing of RPC requests and
    // reading of RPC responses for the client side of an RPC session.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    }
    
    // WithCapacity sets the Capacity field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Capacity field is set to the value of the last call.
    func (b *PersistentVolumeSpecApplyConfiguration) WithCapacity(value v1.ResourceList) *PersistentVolumeSpecApplyConfiguration {
    	b.Capacity = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top