Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 732 for MARK (0.03 sec)

  1. src/internal/trace/parser.go

    	EvProcStop          = 6  // stop of P [timestamp]
    	EvGCStart           = 7  // GC start [timestamp, seq, stack id]
    	EvGCDone            = 8  // GC done [timestamp]
    	EvSTWStart          = 9  // GC mark termination start [timestamp, kind]
    	EvSTWDone           = 10 // GC mark termination done [timestamp]
    	EvGCSweepStart      = 11 // GC sweep start [timestamp, stack id]
    	EvGCSweepDone       = 12 // GC sweep done [timestamp, swept, reclaimed]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableModuleComponentMetaDataResolveResultTest.groovy

            !descriptor.hasResult()
        }
    
        def "can mark as missing"() {
            when:
            descriptor.missing()
    
            then:
            descriptor.state == BuildableModuleComponentMetaDataResolveResult.State.Missing
            descriptor.failure == null
            descriptor.authoritative
            descriptor.hasResult()
        }
    
        def "can mark as failed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Java8Compatibility.java

      static void clear(Buffer b) {
        b.clear();
      }
    
      static void flip(Buffer b) {
        b.flip();
      }
    
      static void limit(Buffer b, int limit) {
        b.limit(limit);
      }
    
      static void mark(Buffer b) {
        b.mark();
      }
    
      static void position(Buffer b, int position) {
        b.position(position);
      }
    
      static void reset(Buffer b) {
        b.reset();
      }
    
      private Java8Compatibility() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    		ArgsValidator: cobra.NoArgs,
    	}
    }
    
    func newMarkControlPlaneSubphase() workflow.Phase {
    	return workflow.Phase{
    		Name:          "mark-control-plane",
    		Short:         "Mark a node as a control-plane",
    		Run:           runMarkControlPlanePhase,
    		InheritFlags:  getControlPlaneJoinPhaseFlags("mark-control-plane"),
    		ArgsValidator: cobra.NoArgs,
    	}
    }
    
    func runEtcdPhase(c workflow.RunData) error {
    	data, ok := c.(JoinData)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.go

    				if q1.Mark&LEAF == 0 {
    					q1.Mark |= LABEL
    				}
    			} else {
    				p.Mark |= LABEL
    			}
    			q1 = p.Link
    			if q1 != nil {
    				q1.Mark |= LABEL
    			}
    			continue
    
    		case AFCMPO, AFCMPU:
    			q = p
    			p.Mark |= FCMP | FLOAT
    			continue
    
    		case obj.ARET:
    			q = p
    			if p.Link != nil {
    				p.Link.Mark |= LABEL
    			}
    			continue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    		add table ip kube-proxy { comment "rules for kube-proxy" ; }
    
    		add chain ip kube-proxy mark-for-masquerade
    		add rule ip kube-proxy mark-for-masquerade mark set mark or 0x4000
    		add chain ip kube-proxy masquerading
    		add rule ip kube-proxy masquerading mark and 0x4000 == 0 return
    		add rule ip kube-proxy masquerading mark set mark xor 0x4000
    		add rule ip kube-proxy masquerading masquerade fully-random
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/CharSequenceReader.java

        return true;
      }
    
      @Override
      public synchronized void mark(int readAheadLimit) throws IOException {
        checkArgument(readAheadLimit >= 0, "readAheadLimit (%s) may not be negative", readAheadLimit);
        checkOpen();
        mark = pos;
      }
    
      @Override
      public synchronized void reset() throws IOException {
        checkOpen();
        pos = mark;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/CharSequenceReader.java

        return true;
      }
    
      @Override
      public synchronized void mark(int readAheadLimit) throws IOException {
        checkArgument(readAheadLimit >= 0, "readAheadLimit (%s) may not be negative", readAheadLimit);
        checkOpen();
        mark = pos;
      }
    
      @Override
      public synchronized void reset() throws IOException {
        checkOpen();
        pos = mark;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUpdater.java

                LOGGER.warn("Cannot mark daemon as busy because the registry is empty.");
            }
        }
    
        public void onCompleteActivity() {
            LOGGER.info("Marking the daemon as idle, address: {}", connectorAddress);
            try {
                daemonRegistry.markState(connectorAddress, Idle);
            } catch (DaemonRegistry.EmptyRegistryException e) {
                LOGGER.warn("Cannot mark daemon as idle because the registry is empty.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. tests/test_param_include_in_schema.py

    }
    
    
    def test_openapi_schema():
        client = TestClient(app)
        response = client.get("/openapi.json")
        assert response.status_code == 200
        assert response.json() == openapi_schema
    
    
    @pytest.mark.parametrize(
        "path,cookies,expected_status,expected_response",
        [
            (
                "/hidden_cookie",
                {},
                200,
                {"hidden_cookie": None},
            ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top