Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 655 for confuse (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // of operator <<, even though its body is the same as the
      // templatized version above.  Without this definition, streaming
      // endl or other basic IO manipulators to Message will confuse the
      // compiler.
      Message& operator <<(BasicNarrowIoManip val) {
        *ss_ << val;
        return *this;
      }
    
      // Instead of 1/0, we want to see true/false for bool values.
      Message& operator <<(bool b) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

         * This is important so all .class files that will be re-created are removed before compilation, otherwise
         * it confuse a compiler: for example Groovy compiler could generate incorrect classes for Spock.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta.go

    		}
    	}
    	// If the generated name validates, but the calculated value does not, it's a problem with generation, and we
    	// report it here. This may confuse users, but indicates a programming bug and still must be validated.
    	// If there are multiple fields out of which one is required then add an or as a separator
    	if len(meta.GetName()) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 12K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

         * Returns <code>value</code> if this value state is marked as explicit, otherwise returns the given <code>defaultValue</code>.
         *
         * Note that "default value" is not related to the convention value, though they are easy to confuse.
         * A default value is a fallback value that is sensible to the caller, in the absence of the explicit value.
         * The default value is not related in any way to the convention value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            when:
            fails 'resolve', '-PextraAttribute'
    
            then:
            failureCauseContains('Found multiple transforms')
        }
    
        def "transform with two attributes will not confuse"() {
            given:
            buildFile << """
    ${artifactTransform("AarRelease", "release")}
    ${artifactTransform("AarDebug", "debug")}
    ${artifactTransform("AarClasses", "classes")}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. pkg/volume/volume.go

    	// sync. This can be used to postpone deletion of a volume that is being
    	// detached from a node. Deletion of such volume would fail anyway and such
    	// error would confuse users.
    	Delete() error
    }
    
    // Attacher can attach a volume to a node.
    type Attacher interface {
    	DeviceMounter
    
    	// Attaches the volume specified by the given spec to the node with the given Name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. test/recover.go

    		println("try1 wrong value", s, "hi")
    		die()
    	}
    }
    
    // When a deferred big call starts, it must first
    // create yet another stack segment to hold the
    // giant frame for x.  Make sure that doesn't
    // confuse recover.
    func big(mustRecover bool) {
    	var x [100000]int
    	x[0] = 1
    	x[99999] = 1
    	_ = x
    
    	v := recover()
    	if mustRecover {
    		if v == nil {
    			println("missing big recover")
    			die()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  8. src/runtime/os_freebsd.go

    	getg().m.procid = uint64(thr_self())
    
    	// On FreeBSD before about April 2017 there was a bug such
    	// that calling execve from a thread other than the main
    	// thread did not reset the signal stack. That would confuse
    	// minitSignals, which calls minitSignalStack, which checks
    	// whether there is currently a signal stack and uses it if
    	// present. To avoid this confusion, explicitly disable the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/plugin_test.go

    			}
    			t.Errorf("running command failed: %v", err)
    			break
    		}
    	}
    }
    
    func TestSymbolNameMangle(t *testing.T) {
    	// Issue 58800: generic function name may contain weird characters
    	// that confuse the external linker.
    	// Issue 62098: the name mangling code doesn't handle some string
    	// symbols correctly.
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "mangle.so", "./mangle/plugin.go")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/net/http/transfer.go

    		} else {
    			var n int64
    			// Consume the body, or, which will also lead to us reading
    			// the trailer headers after the body, if present.
    			n, err = io.CopyN(io.Discard, bodyLocked{b}, maxPostHandlerReadBytes)
    			if err == io.EOF {
    				err = nil
    			}
    			if n == maxPostHandlerReadBytes {
    				b.earlyClose = true
    			}
    		}
    	default:
    		// Fully consume the body, which will also lead to us reading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top