Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 280 for emberi (0.12 sec)

  1. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                ).flatMap(Function.identity());
    
                return ownerAndSupertypes.anyMatch(classInHierarchy ->
                    findMatchingCallableMember(classInHierarchy, input)
                        .map(member -> member.isAnnotatedWith(predicate))
                        .orElse(false)
                );
            }
    
            private Optional<? extends JavaMember> findMatchingCallableMember(JavaClass owner, JavaMember memberToFind) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

        }
    
        /**
         * Tells whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        @Console
        public boolean isDeprecation() {
            return deprecation;
        }
    
        /**
         * Sets whether to log details of usage of deprecated members or classes. Defaults to {@code false}.
         */
        public void setDeprecation(boolean deprecation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    	// uncompressed data.
    	FileSize uint64
    }
    
    // A Section represents a single section in an ELF file.
    type Section struct {
    	SectionHeader
    
    	// Embed ReaderAt for ReadAt method.
    	// Do not embed SectionReader directly
    	// to avoid having Read and Seek.
    	// If a client wants Read and Seek it must use
    	// Open() to avoid fighting over the seek offset
    	// with other clients.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. src/runtime/map_faststr.go

    			}
    		}
    	}
    	return unsafe.Pointer(&zeroVal[0])
    }
    
    // mapaccess2_faststr should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ugorji/go/codec
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname mapaccess2_faststr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users_test.go

    	if err != nil {
    		c.Fatalf("Unable to set user: %v", err)
    	}
    
    	// 1. Add user to a new group
    	group := "mygroup"
    	err = s.adm.UpdateGroupMembers(ctx, madmin.GroupAddRemove{
    		Group:   group,
    		Members: []string{accessKey},
    	})
    	if err != nil {
    		c.Fatalf("Unable to add user to group: %v", err)
    	}
    
    	// 2. Check that user has no access
    	uClient := s.getUserClient(c, accessKey, secretKey, "")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  6. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public final class InputLocation implements java.io.Serializable, Cloneable, InputLocationTracker {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * The one-based line number. The value will be non-positive if
         * unknown.
         */
        private int lineNumber = -1;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/http.go

    // Copyright 2023 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 traceviewer
    
    import (
    	"embed"
    	"fmt"
    	"html/template"
    	"net/http"
    	"strings"
    )
    
    func MainHandler(views []View) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) {
    		if err := templMain.Execute(w, views); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. src/encoding/asn1/marshal.go

    	}
    
    	if params.timeType != 0 && tag != TagUTCTime {
    		return nil, StructuralError{"explicit time type given to non-time member"}
    	}
    
    	if params.stringType != 0 && tag != TagPrintableString {
    		return nil, StructuralError{"explicit string type given to non-string member"}
    	}
    
    	switch tag {
    	case TagPrintableString:
    		if params.stringType == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. src/internal/xcoff/file.go

    	return dwarf.New(abbrev, nil, nil, info, line, nil, ranges, str)
    }
    
    // readImportID returns the import file IDs stored inside the .loader section.
    // Library name pattern is either path/base/member or base/member
    func (f *File) readImportIDs(s *Section) ([]string, error) {
    	// Read loader header
    	if _, err := s.sr.Seek(0, io.SeekStart); err != nil {
    		return nil, err
    	}
    	var istlen uint32
    	var nimpid uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/mdo/writer.vm

    import org.codehaus.plexus.util.xml.pull.XmlSerializer;
    
    @Deprecated
    @Generated
    public class ${className} {
    
          //--------------------------/
         //- Class/Member Variables -/
        //--------------------------/
    
        /**
         * Field NAMESPACE.
         */
        private static final String NAMESPACE = null;
    
        /**
         * Field fileComment.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top