Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 594 for restriction (0.15 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    // structural type restrictions of a type parameter, if any.
    //
    // Structural type restrictions of a type parameter are created via
    // non-interface types embedded in its constraint interface (directly, or via a
    // chain of interface embeddings). For example, in the declaration
    //
    //	type T[P interface{~int; m()}] int
    //
    // the structural restriction of the type parameter P is ~int.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/permissions/KaBaseAnalysisPermissionChecker.kt

                return "Called from a write action."
            }
    
            permissionRegistry.explicitAnalysisRestriction?.let { restriction ->
                return "Resolve is explicitly forbidden in the current action: ${restriction.description}."
            }
    
            error("Cannot get a rejection reason when analysis is allowed.")
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. test/interface/struct.go

    	var i I1 = s
    	i.Put(2)
    	check(i.Get() == 1, "f3 i")
    	check(s.i == 1, "f3 s")
    }
    
    type S2 struct { i int }
    func (p *S2) Get() int { return p.i }
    func (p *S2) Put(i int) { p.i = i }
    
    // Disallowed by restriction of values going to pointer receivers
    // func f4() {
    //	 s := S2{1}
    //	 var i I1 = s
    //	 i.Put(2)
    //	 check(i.Get() == 2, "f4 i")
    //	 check(s.i == 1, "f4 s")
    // }
    
    func f5() {
    	s := S2{1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/mips/l.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: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm64/l.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: Thu Jun 04 07:25:06 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  6. cluster/gce/addons/admission-resource-quota-critical-pods/resource-quota.yaml

    # critical pods are configured as a limited resource by admission_controller_config.yaml,
    # which means they are disallowed unless explicitly allowed by a namespaced quota object.
    # This quota effectively removes the restriction on the number of critical pods allowed in the kube-system namespace.
    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: gcp-critical-pods
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 17 13:52:19 UTC 2020
    - 644 bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/MIT.txt

     Copyright <YEAR> <COPYRIGHT HOLDER>
    
     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 furnished to do so, subject to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. LICENSES/vendor/github.com/mailru/easyjson/LICENSE

    Copyright (c) 2016 Mail.Ru Group
    
    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 furnished to do so, subject to the following conditions:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. licenses/github.com/BurntSushi/toml/cmd/toml-test-decoder/COPYING

    Copyright (c) 2013 TOML authors
    
    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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 28 19:33:59 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  10. licenses/github.com/BurntSushi/toml/internal/toml-test/COPYING

    Copyright (c) 2018 TOML authors
    
    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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 22:58:15 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top