Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 780 for retLine (0.29 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns.go

    			if err := apiclient.CreateOrRetainConfigMap(client, coreDNSConfigMap, kubeadmconstants.CoreDNSConfigMap); err != nil {
    				return err
    			}
    		}
    	} else {
    		// If the Corefile is modified and doesn't require any migration, it'll be retained for the benefit of the user
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Message.java

    package jcifs.util.transport;
    
    
    /**
     * @author mbechler
     *
     */
    public interface Message {
    
        /**
         * Indicate that this message should retain it's raw payload
         */
        void retainPayload ();
    
    
        /**
         * 
         * @return whether to retain the message payload
         */
        boolean isRetainPayload ();
    
    
        /**
         * 
         * @return the raw response message
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue45045.go

    		if s := <-c; s != "first" {
    			panic("map[string], second key did not retain.")
    		}
    		runtime.KeepAlive(m)
    	}
    
    	{
    		c := make(chan string, 2)
    		m := make(map[[2]string]int)
    		m[[2]string{k(c, "first")}] = 0
    		m[[2]string{k(c, "second")}] = 0
    		runtime.GC()
    		if s := <-c; s != "first" {
    			panic("map[[2]string], second key did not retain.")
    		}
    		runtime.KeepAlive(m)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 28 03:27:04 UTC 2021
    - 997 bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

        This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
        -->
        <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
    
        <!--
        This checks the coalescing of CHARACTERS events that are interleaved with comments. Note that inner whitespace
        formed by whitespace-only events must be retained.
        -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java

            // TODO better way than static? this might hide messages in a reactor
            if (!ignoredArtifacts.contains(artifact)) {
                logger.warn("\n\tArtifact " + artifact + " retains local artifactScope '" + artifact.getScope()
                        + "' overriding broader artifactScope '" + ignoredScope + "'\n"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/model/CalculatedValueContainerTest.groovy

            def result = container.get()
            def result2 = container.getValue().get()
    
            then:
            result == "result"
            result2 == "result"
    
            and:
            0 * _
        }
    
        def "retains and rethrows failure to calculate value"() {
            def failure = new RuntimeException()
            def calculator = Mock(ValueCalculator)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 19 19:42:22 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Striped.java

        return lazy(stripes, WeakSafeReadWriteLock::new);
      }
      /**
       * ReadWriteLock implementation whose read and write locks retain a reference back to this lock.
       * Otherwise, a reference to just the read lock or just the write lock would not suffice to ensure
       * the {@code ReadWriteLock} is retained.
       */
      private static final class WeakSafeReadWriteLock implements ReadWriteLock {
        private final ReadWriteLock delegate;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. src/encoding/encoding.go

    // unmarshal a binary representation of itself.
    //
    // UnmarshalBinary must be able to decode the form generated by MarshalBinary.
    // UnmarshalBinary must copy the data if it wishes to retain the data
    // after returning.
    type BinaryUnmarshaler interface {
    	UnmarshalBinary(data []byte) error
    }
    
    // TextMarshaler is the interface implemented by an object that can
    // marshal itself into a textual form.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:43:37 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. pkg/registry/apps/statefulset/strategy_test.go

    	}
    
    	if ss.Generation != 1 {
    		t.Errorf("Generation = %v, want = 1 for StatefulSet: %v", ss.Generation, ss)
    	}
    
    	// Validate that the ordinals field is retained when StatefulSetStartOridnal is disabled.
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.StatefulSetStartOrdinal, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Striped.java

        return lazy(stripes, WeakSafeReadWriteLock::new);
      }
      /**
       * ReadWriteLock implementation whose read and write locks retain a reference back to this lock.
       * Otherwise, a reference to just the read lock or just the write lock would not suffice to ensure
       * the {@code ReadWriteLock} is retained.
       */
      private static final class WeakSafeReadWriteLock implements ReadWriteLock {
        private final ReadWriteLock delegate;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
Back to top