Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 348 for found$ (0.19 sec)

  1. cmd/bucket-handlers.go

    	dObjects, errs := deleteObjectsFn(ctx, bucket, deleteList, ObjectOptions{
    		PrefixEnabledFn:  vc.PrefixEnabled,
    		VersionSuspended: vc.Suspended(),
    	})
    
    	// Are all objects saying bucket not found?
    	if isAllBucketsNotFound(errs) {
    		writeErrorResponse(ctx, w, toAPIError(ctx, errs[0]), r.URL)
    		return
    	}
    
    	for i := range errs {
    		// DeleteMarkerVersionID is not used specifically to avoid
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    			// Lock the heap for reclaimChunk.
    			lock(&h.lock)
    			locked = true
    		}
    
    		// Scan this chunk.
    		nfound := h.reclaimChunk(arenas, idx, pagesPerReclaimerChunk)
    		if nfound <= npage {
    			npage -= nfound
    		} else {
    			// Put spare pages toward global credit.
    			h.reclaimCredit.Add(nfound - npage)
    			npage = 0
    		}
    	}
    	if locked {
    		unlock(&h.lock)
    	}
    
    	trace = traceAcquire()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/reflect/type.go

    	// and a boolean indicating if the field was found.
    	// If the returned field is promoted from an embedded struct,
    	// then Offset in the returned StructField is the offset in
    	// the embedded struct.
    	FieldByName(name string) (StructField, bool)
    
    	// FieldByNameFunc returns the struct field with a name
    	// that satisfies the match function and a boolean indicating if
    	// the field was found.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                'org:test:1.0' {
                    expectGetMetadata()
                }
            }
            fails 'checkDeps'
    
            then:
            failure.assertHasCause("""No matching variant of org:test:1.0 was found. The consumer was configured to find a component for use during runtime, as well as attribute 'custom' with value 'c1' but:
      - Variant 'api' declares a component, as well as attribute 'custom' with value 'c1':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %2 = "tf.TPUReplicatedInput"(%arg0, %arg2) : (!rtype, !rtype) -> !rtype
      %3 = "tf.TPUReplicatedInput"(%arg1, %arg3) : (!rtype, !rtype) -> !rtype
      // expected-error@+1 {{'tf.TPUPartitionedInputV2' op requires 4 operands but found 2}}
      %4 = "tf.TPUPartitionedInputV2"(%2, %3) {_XlaSharding = "", device = "", partition_dims = []} : (!rtype, !rtype) -> !rtype
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/syscall/zerrors_darwin_amd64.go

    	92:  "illegal byte sequence",
    	93:  "attribute not found",
    	94:  "bad message",
    	95:  "EMULTIHOP (Reserved)",
    	96:  "no message available on STREAM",
    	97:  "ENOLINK (Reserved)",
    	98:  "no STREAM resources",
    	99:  "not a STREAM",
    	100: "protocol error",
    	101: "STREAM ioctl timeout",
    	102: "operation not supported on socket",
    	103: "policy not found",
    	104: "state not recoverable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    		default:
    			flagExtld = []string{"gcc"}
    		}
    	}
    	return flagExtld
    }
    
    // findLibPathCmd uses cmd command to find gcc library libname.
    // It returns library full path if found, or "none" if not found.
    func (ctxt *Link) findLibPathCmd(cmd, libname string) string {
    	extld := ctxt.extld()
    	name, args := extld[0], extld[1:]
    	args = append(args, hostlinkArchArgs(ctxt.Arch)...)
    	args = append(args, cmd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package windows
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    const (
    	NameUnknown          = 0
    	NameFullyQualifiedDN = 1
    	NameSamCompatible    = 2
    	NameDisplay          = 3
    	NameUniqueId         = 6
    	NameCanonical        = 7
    	NameUserPrincipal    = 8
    	NameCanonicalEx      = 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package http_test
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"mime"
    	"mime/multipart"
    	"net"
    	"net/http"
    	. "net/http"
    	"net/http/httptest"
    	"net/url"
    	"os"
    	"os/exec"
    	"path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    // is evaluated when the param referred by its perNamespaceParamRef is not found.
    type ParameterNotFoundActionType string
    
    const (
    	// Allow means all requests will be admitted if no param resources
    	// could be found.
    	AllowAction ParameterNotFoundActionType = "Allow"
    	// Deny means all requests will be denied if no param resources are found.
    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top