Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 912 for illegal (0.35 sec)

  1. test/fixedbugs/issue13268.go

    	// compile and test output
    	cmd := exec.Command("go", "tool", "compile", f.Name())
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		log.Fatalf("expected cmd/compile to fail")
    	}
    	if strings.HasPrefix(string(out), "illegal UTF-8 sequence") {
    		log.Fatalf("error %q not found", out)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 984 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    		return nil, fmt.Errorf("illegal version string %q", str)
    	}
    
    	v := &Version{
    		components: make([]uint, len(components)),
    		semver:     semver,
    	}
    	for i, comp := range components {
    		if (i == 0 || semver) && strings.HasPrefix(comp, "0") && comp != "0" {
    			return nil, fmt.Errorf("illegal zero-prefixed version component %q in %q", comp, str)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/IllegalDependencyNotation.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api;
    
    /**
     * This exceptions is thrown, if a dependency is declared with a illegal notation.
     */
    public class IllegalDependencyNotation extends GradleException {
        public IllegalDependencyNotation() {
        }
    
        public IllegalDependencyNotation(String message) {
            super(message);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue21048.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 21048: s390x merged address generation into stores
    // to unaligned global variables. This resulted in an illegal
    // instruction.
    
    package main
    
    type T struct {
    	_ [1]byte
    	a [2]byte // offset: 1
    	_ [3]byte
    	b [2]uint16 // offset: 6
    	_ [2]byte
    	c [2]uint32 // offset: 12
    	_ [2]byte
    	d [2]int16 // offset: 22
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 19 14:22:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/parse.go

    			if prefix != 0 || scale != 0 {
    				p.errorf("illegal address mode for register pair")
    				return
    			}
    			a.Type = obj.TYPE_REGREG
    			a.Offset = int64(r2)
    			// Nothing may follow
    			return
    		}
    		if p.arch.Family == sys.PPC64 {
    			// Special form for PPC64: (R1+R2); alias for (R1)(R2).
    			if prefix != 0 || scale != 0 {
    				p.errorf("illegal address mode for register+register")
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

                            .getConfigProperties()
                            .get("aether.priority.WagonTransporterFactory"));
            properties.remove("maven.resolver.transport");
    
            // illegal
            properties.setProperty("maven.resolver.transport", "illegal");
            request.setSystemProperties(properties);
            IllegalArgumentException exception = assertThrowsExactly(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

            switch (requestType) {
                case REQUEST_PUT:
                    break;
                case REQUEST_GET:
                    break;
                default:
                    throw new IllegalArgumentException("Illegal request type: " + requestType);
            }
    
            this.requestType = requestType;
        }
    
        /**
         * @return Returns the eventType.
         */
        public int getEventType() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/CountingOutputStreamTest.java

        assertEquals(written, counter.getCount());
    
        counter.write(data, 2, 5);
        written += 5;
        assertEquals(written, out.size());
        assertEquals(written, counter.getCount());
    
        // Test that illegal arguments do not affect count
        assertThrows(IndexOutOfBoundsException.class, () -> counter.write(data, 0, data.length + 1));
        assertEquals(written, out.size());
        assertEquals(written, counter.getCount());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. gradle/dependency-management/capabilities.json

    //
    // The idea is that such "rules" could be published, then applied by a plugin.
    //
    // Whenever two libraries provide the same capability, for example, "log4j" and "log4j-over-slfj4",
    // it's illegal to have both of them on the classpath. Use this file to declare that they provide
    // the same capability, and that we prefer to use slf4j in this case.
    [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/errors.go

    	}
    
    	name = "Unknown"
    	obj := a.GetObject()
    	if obj != nil {
    		accessor, err := meta.Accessor(obj)
    		if err != nil {
    			// not all object have ObjectMeta.  If we don't, return a name with a slash (always illegal)
    			return "Unknown/errorGettingName", resource, nil
    		}
    
    		// this is necessary because name object name generation has not occurred yet
    		if len(accessor.GetName()) > 0 {
    			name = accessor.GetName()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 19:40:51 UTC 2017
    - 2.3K bytes
    - Viewed (0)
Back to top