Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,241 for neon (0.04 sec)

  1. docs/de/docs/python-types.md

    ```
    
    Der Parameter `name` ist definiert als `Optional[str]`, aber er ist **nicht optional**, Sie können die Funktion nicht ohne diesen Parameter aufrufen:
    
    ```Python
    say_hi()  # Oh, nein, das löst einen Fehler aus! 😱
    ```
    
    Der `name` Parameter wird **immer noch benötigt** (nicht *optional*), weil er keinen Default-Wert hat. `name` akzeptiert aber dennoch `None` als Wert:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/NullabilityChangesTest.kt

                    "Field finalField: From non-nullable to nullable breaking change.",
                    "Method com.example.Source.foo(): From non-null returning to null returning breaking change."
                )
                assertHasNoWarning()
                assertHasNoInformation()
            }
        }
    
        @Test
        fun `from non-null returning to null returning is breaking (kotlin)`() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 9.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

            }
            setAccessResultData(accessResultData);
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#getId()
         */
        @Override
        public IDTYPE getId() {
            return id;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#setId(IDTYPE)
         */
        @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_test.go

    			222: {CoreID: 55, SocketID: 3, NUMANodeID: 3},
    			162: {CoreID: 55, SocketID: 3, NUMANodeID: 3},
    			282: {CoreID: 55, SocketID: 3, NUMANodeID: 3},
    		},
    	}
    	/*
    		Topology from dual xeon gold 6230; lscpu excerpt
    		CPU(s):              80
    		On-line CPU(s) list: 0-79
    		Thread(s) per core:  2
    		Core(s) per socket:  20
    		Socket(s):           2
    		NUMA node(s):        4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 24 20:49:58 UTC 2021
    - 40.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (ORN x0 x1:(RORconst [c] y)) && clobberIfDead(x1) => (ORNshiftRO x0 y [c])
    (EON x0 x1:(SLLconst [c] y)) && clobberIfDead(x1) => (EONshiftLL x0 y [c])
    (EON x0 x1:(SRLconst [c] y)) && clobberIfDead(x1) => (EONshiftRL x0 y [c])
    (EON x0 x1:(SRAconst [c] y)) && clobberIfDead(x1) => (EONshiftRA x0 y [c])
    (EON x0 x1:(RORconst [c] y)) && clobberIfDead(x1) => (EONshiftRO x0 y [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/users/users_other.go

    */
    
    package users
    
    // EntryMap is empty on non-Linux.
    type EntryMap struct{}
    
    // UsersAndGroups is empty on non-Linux.
    type UsersAndGroups struct{}
    
    // ID is a NO-OP on non-Linux.
    func (*EntryMap) ID(string) *int64 {
    	return nil
    }
    
    // String is NO-OP on non-Linux.
    func (*EntryMap) String() string {
    	return ""
    }
    
    // AddUsersAndGroups is a NO-OP on non-Linux.
    func AddUsersAndGroups() (*UsersAndGroups, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DelegatedGradlePropertiesExtensionsTest.kt

                }
            }
        }
    
        @Test
        fun `non-nullable delegated property access of non-existing gradle property throws`() {
    
            withMockForSettings(absent = "p") {
    
                val p: Any by settings
                try {
                    p.toString()
                    fail("InvalidUserCodeException not thrown")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:44:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. test/makechan.go

    	sink = make(T, 1.0)
    	sink = make(T, float32(1.0)) // ERROR "non-integer buffer argument in make.*|must be integer"
    	sink = make(T, float64(1.0)) // ERROR "non-integer buffer argument in make.*|must be integer"
    	sink = make(T, 1+0i)
    	sink = make(T, complex64(1+0i))  // ERROR "non-integer buffer argument in make.*|must be integer"
    	sink = make(T, complex128(1+0i)) // ERROR "non-integer buffer argument in make.*|must be integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. test/fixedbugs/issue22822.go

    func F() {
    	slice := []int{1, 2, 3}
    	_ = slice
    	len := int(2)
    	println(len(slice)) // ERROR "cannot call non-function len .type int., declared at LINE-1|expected function|cannot call non-function len"
    	const iota = 1
    	println(iota(slice)) // ERROR "cannot call non-function iota .type int., declared at LINE-1|expected function|cannot call non-function iota"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 639 bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/CharsetsTest.java

      }
    
      @J2ktIncompatible
      @GwtIncompatible // Non-UTF-8 Charset
      public void testUtf16be() {
        assertEquals(Charset.forName("UTF-16BE"), Charsets.UTF_16BE);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Non-UTF-8 Charset
      public void testUtf16le() {
        assertEquals(Charset.forName("UTF-16LE"), Charsets.UTF_16LE);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Non-UTF-8 Charset
      public void testUtf16() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 04 09:41:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top