Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 149 for meaningful (0.16 sec)

  1. src/cmd/link/internal/ld/dwarf_test.go

    			continue
    		}
    		// ... except unsafe.Pointer...
    		if name, _ := die.Val(intdwarf.DW_AT_name).(string); name == "unsafe.Pointer" {
    			continue
    		}
    		typesChecked++
    		// ... we want to see a meaningful DW_AT_go_kind value.
    		if val, ok := die.Val(intdwarf.DW_AT_go_kind).(int64); !ok || val == 0 {
    			failures++
    			// dump DIEs for first 10 failures.
    			if failures <= 10 {
    				idx := ex.IdxFromOffset(die.Offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	// Indicates that the object is a member of a group.
    	DF_1_GROUP DynFlag1 = 0x00000004
    	// Indicates that the object cannot be deleted from a process.
    	DF_1_NODELETE DynFlag1 = 0x00000008
    	// Meaningful only for filters. Indicates that all associated filtees be
    	// processed immediately.
    	DF_1_LOADFLTR DynFlag1 = 0x00000010
    	// Indicates that this object's initialization section be run before any other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	// because c was closed.
    	success bool
    
    	// waiters is a count of semaRoot waiting list other than head of list,
    	// clamped to a uint16 to fit in unused space.
    	// Only meaningful at the head of the list.
    	// (If we wanted to be overly clever, we could store a high 16 bits
    	// in the second entry in the list.)
    	waiters uint16
    
    	parent   *sudog // semaRoot binary tree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    			// parts of a fraction for floating-point numbers that are
    			// represented accurately in the go/constant package.
    			// Constant literals that are longer than this many bits
    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    	}()
    
    	logger := klog.FromContext(ctx)
    	verboseLogs := logger.V(4).Enabled()
    	if verboseLogs {
    		logger = klog.LoggerWithName(logger, "PostFilter")
    	}
    
    	// `result` records the last meaningful(non-noop) PostFilterResult.
    	var result *framework.PostFilterResult
    	var reasons []string
    	var rejectorPlugin string
    	for _, pl := range f.postFilterPlugins {
    		ctx := ctx
    		if verboseLogs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    					HTTPStatusCode: apiErr.HTTPStatusCode,
    				}
    			}
    		}
    	}
    
    	if apiErr.Code == "InternalError" {
    		// Make sure to log the errors which we cannot translate
    		// to a meaningful S3 API errors. This is added to aid in
    		// debugging unexpected/unhandled errors.
    		internalLogIf(ctx, err)
    	}
    
    	return apiErr
    }
    
    // getAPIError provides API Error for input API error code.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/types2/expr.go

    			// parts of a fraction for floating-point numbers that are
    			// represented accurately in the go/constant package.
    			// Constant literals that are longer than this many bits
    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    This situation is common as explained for <<sec:trusting-several-checksums,this section>>: a typical case is when the POM file for a dependency differs from one repository to the other (often in a non-meaningful way).
    
    In addition, Gradle will try to group keys automatically and generate the `trusted-keys` block which reduced the configuration file size as much as possible.
    
    [[sec:local-keyring-only]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.7.md

    
      * Bug fixes
    
        * Fix some false negatives in detection of meaningful conflicts during strategic merge patch with maps and lists. ([#43469](https://github.com/kubernetes/kubernetes/pull/43469), [@enisoc](https://github.com/enisoc))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * well as create and last write times. This method is almost twice as
     * efficient as manually copying as it employs an additional write
     * thread to read and write data concurrently.
     * <p/>
     * It is not possible (nor meaningful) to copy entire workgroups or
     * servers.
     *
     * @param dest the destination file or directory
     * @throws SmbException
     */
        public void copyTo( SmbFile dest ) throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top