Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 140 for restriction (0.23 sec)

  1. src/runtime/trace.go

    	}
    
    	// Now that we've done some of the heavy stuff, prevent the world from stopping.
    	// This is necessary to ensure the consistency of the STW events. If we're feeling
    	// adventurous we could lift this restriction and add a STWActive event, but the
    	// cost of maintaining this consistency is low. We're not going to hold this semaphore
    	// for very long and most STW periods are very short.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

     * each platform will see a fixed abbrev table for all objects); the number
     * of abbrev entries is fairly small (compared to C++ objects).  The DWARF
     * spec places no restriction on the ordering of attributes in the
     * Abbrevs and DIEs, and we will always write them out in the order
     * of declaration in the abbrev.
     */
    type dwAttrForm struct {
    	attr uint16
    	form uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    automatically defined in the preamble. Note that there is no way for C
    code to create a value of this type; this is only useful for passing
    string values from Go to C and back to Go.
    
    Using //export in a file places a restriction on the preamble:
    since it is copied into two different C output files, it must not
    contain any definitions, only declarations. If a file contains both
    definitions and declarations, then the two output files will produce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/obj6.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/asm.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // The [module.Version] type is a simple Path, Version pair:
    //
    //	type Version struct {
    //		Path string
    //		Version string
    //	}
    //
    // There are no restrictions imposed directly by use of this structure,
    // but additional checking functions, most notably [Check], verify that
    // a particular path, version pair is valid.
    //
    // # Escaped Paths
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. plugin/pkg/admission/serviceaccount/admission_test.go

    										LocalObjectReference: api.LocalObjectReference{Name: "foo"},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    	// validate enforces restrictions on secret mounts when operation==create and subresource=='' or operation==update and subresource==ephemeralcontainers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    			// avoid anonymous interface cycles.
    			hash += 3*hashString(m.Name()) + 5*h.shallowHash(m.Type())
    		}
    
    		// Hash type restrictions.
    		terms, err := typeparams.InterfaceTermSet(t)
    		// if err != nil t has invalid type restrictions.
    		if err == nil {
    			hash += h.hashTermSet(terms)
    		}
    
    		return hash
    
    	case *types.Map:
    		return 9109 + 2*h.Hash(t.Key()) + 3*h.Hash(t.Elem())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/net/textproto/reader_test.go

    	{"230-Anonymous access granted, restrictions apply\n" +
    		"Read the file README.txt,\n" +
    		"230  please",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply\nRead the file README.txt,\n please",
    	},
    
    	{"230 Anonymous access granted, restrictions apply\n",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply",
    	},
    
    	{"400-A\n400-B\n400 C",
    		4,
    		400,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top