Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 370 for setnbe (0.23 sec)

  1. pkg/proxy/ipvs/ipset/ipset_test.go

    			Protocol: ProtocolSCTP,
    			SetType:  HashIPPort,
    		},
    		set: &IPSet{
    			Name: "SETTE",
    		},
    		addCombinedOutputLog: [][]string{
    			{"ipset", "add", "SETTE", "192.168.1.2,sctp:80"},
    			{"ipset", "add", "SETTE", "192.168.1.2,sctp:80", "-exist"},
    		},
    		delCombinedOutputLog: []string{"ipset", "del", "SETTE", "192.168.1.2,sctp:80"},
    	},
    }
    
    func TestAddEntry(t *testing.T) {
    	for i := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/PartialBasicGradleProject.java

            this.parent = parent;
            return this;
        }
    
        public String getName() {
            return name;
        }
    
        public PartialBasicGradleProject setName(String name) {
            this.name = name;
            return this;
        }
    
        public Set<? extends PartialBasicGradleProject> getChildren() {
            return children;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/BuildCommand.java

            this.name = Preconditions.checkNotNull(name);
            this.arguments = Preconditions.checkNotNull(arguments);
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public Map<String, String> getArguments() {
            return arguments;
        }
    
        public void setArguments(Map<String, String> arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibraries.java

            this.domainObjectCollectionFactory = domainObjectCollectionFactory;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public void setName(String name) {
            this.name = name;
        }
    
        @Override
        public void content(Action<? super RepositoryContentDescriptor> configureAction) {
            throw new UnsupportedOperationException();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/beans/factory/BeanDescFactoryTest.java

             * @return String
             */
            public String getEee() {
                return null;
            }
    
            /**
             * @param eee
             *            eee
             */
            public void setEee(final String eee) {
            }
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/ArtifactRepository.java

         * been added to the container.
         *
         * @param name The name. Must not be null.
         * @throws IllegalStateException If the name is set after it has been added to the container.
         */
        void setName(String name);
    
        /**
         * Configures the content of this repository.
         * @param configureAction the configuration action
         *
         * @since 5.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/main/kotlin/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.kt

        override fun getPriority(): Int = 1
    
        override fun setPriority(priority: Int) {
            throw UnsupportedOperationException()
        }
    
        override fun setName(name: String?) {
            throw UnsupportedOperationException()
        }
    
        override fun getDescription(): String = "Reports incorrect usages of integration test fixtures"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestExecutionIntegrationTest.groovy

                    @Test
                    public void checkThreadName() {
                        assertEquals("Test worker", Thread.currentThread().getName());
                        Thread.currentThread().setName(getClass().getSimpleName());
                    }
                }
            """.stripIndent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutInterceptor.groovy

            } catch (Throwable t) {
                throw t
            }
        }
    
        void intercept(Action<Void> action) {
            MethodInfo methodInfo = new MethodInfo()
            methodInfo.setName('MockMethod')
            intercept(new MethodInvocation(null, null, null, null, null, methodInfo, null) {
                void proceed() throws Throwable {
                    action.execute(null)
                }
            })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/es/user/bsentity/BsGroup.java

            this.gidNumber = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
            return convertEmptyToNull(name);
        }
    
        public void setName(String value) {
            registerModifiedProperty("name");
            this.name = value;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top