Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for stoppable (0.11 sec)

  1. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/UnicastMessagingIntegrationTest.groovy

                } finally {
                    lock.unlock()
                }
            }
    
            @Override
            void stop() {
                lock.lock()
                try {
                    CompositeStoppable.stoppable(acceptor, connection).stop()
                } finally {
                    connection = null
                    acceptor = null
                    lock.unlock()
                }
                services.close()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/DefaultValueStore.java

                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        @Override
        public void close() throws IOException {
            try {
                CompositeStoppable.stoppable().add(sinks).add(availableSources.values()).stop();
            } finally {
                sinks.clear();
                availableSinks.clear();
                availableSources.clear();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/policy.go

    			} else {
    				skewErrors.Skippable = append(skewErrors.Skippable, tooLargeKubeadmSkew)
    			}
    		} else {
    			// Upgrading to a higher patch version than kubeadm is ok if the user specifies --force. Not recommended, but possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/top.html

    <html>
    <head>
      <meta charset="utf-8">
      <title>{{.Title}}</title>
      {{template "css" .}}
      <style type="text/css">
      </style>
    </head>
    <body>
      {{template "header" .}}
      <div id="top">
        <table id="toptable">
          <thead>
            <tr>
              <th id="flathdr1">Flat</th>
              <th id="flathdr2">Flat%</th>
              <th>Sum%</th>
              <th id="cumhdr1">Cum</th>
              <th id="cumhdr2">Cum%</th>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. src/internal/zstd/zstd_test.go

    	},
    	{
    		"empty block",
    		"",
    		"\x28\xb5\x2f\xfd\x00\x00\x15\x00\x00\x00\x00",
    	},
    	{
    		"single skippable frame",
    		"",
    		"\x50\x2a\x4d\x18\x00\x00\x00\x00",
    	},
    	{
    		"two skippable frames",
    		"",
    		"\x50\x2a\x4d\x18\x00\x00\x00\x00" +
    			"\x50\x2a\x4d\x18\x00\x00\x00\x00",
    	},
    }
    
    func TestSamples(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. cmd/untar.go

    	f      format
    }{
    	{
    		header: []byte{0x1f, 0x8b, 8},
    		f:      formatGzip,
    	},
    	{
    		// Zstd default header.
    		header: []byte{0x28, 0xb5, 0x2f, 0xfd},
    		f:      formatZstd,
    	},
    	{
    		// Zstd skippable frame header.
    		header: []byte{0x2a, 0x4d, 0x18},
    		f:      formatZstd,
    	},
    	{
    		// LZ4
    		header: []byte{0x4, 0x22, 0x4d, 0x18},
    		f:      formatLZ4,
    	},
    	{
    		// Snappy/S2 stream
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top