Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for returns_ (0.25 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.doLast(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <li>A {@link java.util.concurrent.Callable} that returns any supported type. The callable's return value is resolved recursively.</li>
         *
         * </ul>
         *
         * @param path The object to resolve as a File.
         * @return The resolved file. Never returns null.
         */
        File file(Object path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. src/net/http/request.go

    	return r.Header.Get("User-Agent")
    }
    
    // Cookies parses and returns the HTTP cookies sent with the request.
    func (r *Request) Cookies() []*Cookie {
    	return readCookies(r.Header, "")
    }
    
    // CookiesNamed parses and returns the named HTTP cookies sent with the request
    // or an empty slice if none matched.
    func (r *Request) CookiesNamed(name string) []*Cookie {
    	if name == "" {
    		return []*Cookie{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    // If the object does not exist ObjectNotFound error is returned.
    // If any other error is found, it is returned.
    // The check is skipped if there is only one pool, and 0, nil is always returned in that case.
    func (z *erasureServerPools) getPoolIdxExistingNoLock(ctx context.Context, bucket, object string) (idx int, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      auto status =
          ConvertSubgraphIdxToStablehloRegion(op, func_names, builder, op_state);
      if (!status.ok()) {
        return emitError(loc, status.ToString()), status;
      }
    
      return builder.create(op_state);
    }
    
    // Returns indices of the given tensors in the subgraph. Returns error if a
    // tensor name cannot be found in the subgraph.
    StatusOr<std::vector<int>> GetTensorIndices(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       * multimap, either directly or through the multimap's views, result in an {@code
       * UnsupportedOperationException}.
       *
       * <p>The returned multimap will be serializable if the specified multimap is serializable.
       *
       * @param delegate the multimap for which an unmodifiable view is to be returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    			return true
    		}
    
    		ps := mappedPolicy.toSlice()
    		sort.Strings(ps)
    		r = append(r, madmin.GroupPolicyEntities{
    			Group:    group,
    			Policies: ps,
    		})
    		return true
    	})
    
    	sort.Slice(r, func(i, j int) bool {
    		return r[i].Group < r[j].Group
    	})
    
    	return r
    }
    
    // Assumes store is locked by caller. If policies is empty, returns all policy mappings.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    		cause = check.sprintf(format, args...)
    	})
    	return cause
    }
    
    // kindString returns the type kind as a string.
    func (check *Checker) kindString(typ Type) string {
    	switch under(typ).(type) {
    	case *Array:
    		return "array"
    	case *Slice:
    		return "slice"
    	case *Struct:
    		return "struct"
    	case *Pointer:
    		return "pointer"
    	case *Signature:
    		return "func"
    	case *Interface:
    		if isTypeParam(typ) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

            return false;
          }
        }
        return false;
      }
    
      /**
       * Returns an unmodifiable view of the specified navigable set. This method allows modules to
       * provide users with "read-only" access to internal navigable sets. Query operations on the
       * returned set "read through" to the specified set, and attempts to modify the returned set,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    		}
    
    		buf := make([]byte, 1024)
    		n, err := c.Read(buf)
    		if err != nil {
    			t.Errorf("Server read returned error: %s", err)
    			return
    		}
    		c.Close()
    		bufChan <- buf[:n]
    	}()
    
    	Server(s, testConfig).Handshake()
    	buf := <-bufChan
    
    	if len(buf) < 5+4 {
    		t.Fatalf("Server returned short message of length %d", len(buf))
    	}
    	// buf contains a TLS record, with a 5 byte record header and a 4 byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top