Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 189 for picard (0.38 sec)

  1. src/runtime/testdata/testprognet/waiters.go

    	}
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		conn, err := listener.Accept()
    		if err != nil {
    			log.Fatal(err)
    		}
    		defer conn.Close()
    		if _, err := io.Copy(io.Discard, conn); err != nil {
    			log.Fatal(err)
    		}
    	}()
    
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		conn, err := net.Dial("tcp", listener.Addr().String())
    		if err != nil {
    			log.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.wizard;
    
    import javax.validation.constraints.Max;
    import javax.validation.constraints.Min;
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/runtime/testdata/testwinsignal/main.go

    	"log"
    	"os"
    	"os/signal"
    	"syscall"
    	"time"
    )
    
    func main() {
    	// Ensure that this process terminates when the test times out,
    	// even if the expected signal never arrives.
    	go func() {
    		io.Copy(io.Discard, os.Stdin)
    		log.Fatal("stdin is closed; terminating")
    	}()
    
    	// Register to receive all signals.
    	c := make(chan os.Signal, 1)
    	signal.Notify(c)
    
    	// Get console window handle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/error/admin_error.jsp

        <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp">
            <jsp:param name="menuCategoryType" value="system"/>
            <jsp:param name="menuType" value="wizard"/>
        </jsp:include>
    
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. src/compress/bzip2/bzip2_test.go

    	// Determine the uncompressed size of testfile.
    	uncompressedSize, err := io.Copy(io.Discard, NewReader(bytes.NewReader(compressed)))
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	b.SetBytes(uncompressedSize)
    	b.ReportAllocs()
    	b.ResetTimer()
    
    	for i := 0; i < b.N; i++ {
    		r := bytes.NewReader(compressed)
    		io.Copy(io.Discard, NewReader(r))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/ResolveArtifactNodeCodec.kt

    
    object ResolveArtifactNodeCodec : Codec<DefaultResolvableArtifact.ResolveAction> {
        override suspend fun WriteContext.encode(value: DefaultResolvableArtifact.ResolveAction) {
            // TODO - should just discard this action. The artifact location will already have been resolved during writing to the cache
            // and so this node does not do anything useful
            write(value.artifact)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/FailsafeBuildProgressListenerAdapter.java

            this.delegate = delegate;
        }
    
        @Override
        public void onEvent(Object event) {
            if (listenerFailure != null) {
                // Discard event
                return;
            }
            try {
                delegate.onEvent(event);
            } catch (Throwable t) {
                listenerFailure = t;
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/mwbbuf.go

    	}
    
    	if (b.end-b.next)%unsafe.Sizeof(b.buf[0]) != 0 {
    		throw("bad write barrier buffer bounds")
    	}
    }
    
    // discard resets b's next pointer, but not its end pointer.
    //
    // This must be nosplit because it's called by wbBufFlush.
    //
    //go:nosplit
    func (b *wbBuf) discard() {
    	b.next = uintptr(unsafe.Pointer(&b.buf[0]))
    }
    
    // empty reports whether b contains no pointers.
    func (b *wbBuf) empty() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeActionCodec.kt

        override suspend fun WriteContext.encode(value: WorkNodeAction) {
            logNotImplemented(value.javaClass)
        }
    
        override suspend fun ReadContext.decode(): WorkNodeAction {
            // TODO - should discard from graph instead
            return object : WorkNodeAction {
                override fun run(context: NodeExecutionContext) {
                    // Ignore
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. samples/guide/src/main/java/okhttp3/recipes/PrintEvents.java

          }
    
          @Override public void onResponse(Call call, Response response) throws IOException {
            try (ResponseBody body = response.body()) {
              // Consume and discard the response body.
              body.source().readByteString();
            }
          }
        });
    
        Request newYorkTimesRequest = new Request.Builder()
            .url("https://www.nytimes.com/")
            .build();
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 16 23:20:49 UTC 2020
    - 6.1K bytes
    - Viewed (0)
Back to top