Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 912 for illegal (0.1 sec)

  1. doc/go_spec.html

    '\''         // rune literal containing single quote character
    'aa'         // illegal: too many characters
    '\k'         // illegal: k is not recognized after a backslash
    '\xa'        // illegal: too few hexadecimal digits
    '\0'         // illegal: too few octal digits
    '\400'       // illegal: octal value over 255
    '\uDFFF'     // illegal: surrogate half
    '\U00110000' // illegal: invalid Unicode code point
    </pre>
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. staging/src/k8s.io/apiserver/pkg/audit/policy/reader_test.go

    	}
    
    	for _, tc := range testCases {
    		f, err := writePolicy(t, tc.policy)
    		require.NoError(t, err)
    		defer os.Remove(f)
    
    		_, err = LoadPolicyFromFile(f)
    		assert.Errorf(t, err, "loaded illegal policy with 0 rules from testCase %s", tc.caseName)
    	}
    }
    
    func writePolicy(t *testing.T, policy string) (string, error) {
    	f, err := ioutil.TempFile("", "policy.yaml")
    	require.NoError(t, err)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/api_object_versioner.go

    	return nil
    }
    
    // UpdateList implements Versioner
    func (a APIObjectVersioner) UpdateList(obj runtime.Object, resourceVersion uint64, nextKey string, count *int64) error {
    	if resourceVersion == 0 {
    		return fmt.Errorf("illegal resource version from storage: %d", resourceVersion)
    	}
    	listAccessor, err := meta.ListAccessor(obj)
    	if err != nil || listAccessor == nil {
    		return err
    	}
    	versionString := strconv.FormatUint(resourceVersion, 10)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:19:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2/generated.pb.go

    		if wireType == 4 {
    			return fmt.Errorf("proto: ContainerResourceMetricSource: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: ContainerResourceMetricSource: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    				return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
    			}
    			var stringLen uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 162.9K bytes
    - Viewed (0)
  5. src/runtime/sigtab_linux_generic.go

    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: abort"},
    	/* 7 */ {_SigPanic + _SigUnblock, "SIGBUS: bus error"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/verify-tfxla-legalization.mlir

    // RUN: tf-opt "-tfxla-verify-legalization=legalize-chlo=true" -verify-diagnostics -split-input-file %s | FileCheck -dump-input=fail %s
    // Tests the VerifyTFXLALegalization Pass, that just ensures we don't have
    // any illegal ops at the end of the pipeline.
    
    // CHECK-LABEL: allowsMHLO
    func.func @allowsMHLO() -> (tensor<8x64x32x4xcomplex<f32>> {mhlo.sharding = ""}) {
      %0 = mhlo.constant dense<(1.000000e+00,-1.000000e+00)> : tensor<128x32x4xcomplex<f32>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    			args[0], suffix = memOpTrans(mem)
    		} else {
    			panic(fmt.Sprintf("illegal instruction: %v", inst))
    		}
    	case LDR_EQ, LDRB_EQ, LDRSB_EQ, LDRH_EQ, LDRSH_EQ, STR_EQ, STRB_EQ, STRH_EQ, VLDR_EQ, VSTR_EQ, LDREX_EQ, LDREXH_EQ, LDREXB_EQ:
    		if mem, ok := inst.Args[1].(Mem); ok {
    			args[1], suffix = memOpTrans(mem)
    		} else {
    			panic(fmt.Sprintf("illegal instruction: %v", inst))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. src/runtime/checkptr.go

    func checkptrStraddles(ptr unsafe.Pointer, size uintptr) bool {
    	if size <= 1 {
    		return false
    	}
    
    	// Check that add(ptr, size-1) won't overflow. This avoids the risk
    	// of producing an illegal pointer value (assuming ptr is legal).
    	if uintptr(ptr) >= -(size - 1) {
    		return true
    	}
    	end := add(ptr, size-1)
    
    	// TODO(mdempsky): Detect when [ptr, end] contains Go allocations,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/runtime/signal_solaris.go

    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt (rubout)"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit (ASCII FS)"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction (not reset when caught)"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap (not reset when caught)"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: used by abort, replace SIGIOT in the future"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    Because those implementations live at different GAV coordinates, the build tool has usually no way to find out that there's a conflict between those libraries.
    To solve this, Gradle provides the concept of _capability_.
    
    It's illegal to find two components providing the same _capability_ in a single dependency graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top