Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for Invert (0.13 sec)

  1. src/cmd/link/internal/loader/loader.go

    		ms.data = append(ms.data, make([]byte, int(siz)+1-cl)...)
    		ms.data = ms.data[0:cl]
    	}
    	ms.data = ms.data[:siz]
    }
    
    // Convert a local index to a global index.
    func (l *Loader) toGlobal(r *oReader, i uint32) Sym {
    	return r.syms[i]
    }
    
    // Convert a global index to a local index.
    func (l *Loader) toLocal(i Sym) (*oReader, uint32) {
    	return l.objs[l.objSyms[i].objidx], l.objSyms[i].s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/time/format.go

    				b = append(b, 'Z')
    				break
    			}
    			zone := offset / 60 // convert to minutes
    			absoffset := offset
    			if zone < 0 {
    				b = append(b, '-')
    				zone = -zone
    				absoffset = -absoffset
    			} else {
    				b = append(b, '+')
    			}
    			b = appendInt(b, zone/60, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	// The encoding of N text bytes into a “length” word
    	// adds 1 to each byte, packs them into the bottom
    	// N*8 bits of a word, and then bitwise inverts the result.
    	// That is, the text sequence A B C (hex 41 42 43)
    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    	// Adding 1 ensures the encoded byte sequence never
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	state, err := cs.Read(stateKey)
    	if err != nil {
    		return nil, err
    	}
    	s, ok := state.(*stateData)
    	if !ok {
    		return nil, errors.New("unable to convert state into stateData")
    	}
    	return s, nil
    }
    
    // Filter invoked at the filter extension point.
    // It evaluates if a pod can fit due to the resources it requests,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    				// a portion of an in-param that is not live/used.
    				// Add a new dummy OpArg{Int,Float}Reg for it.
    				synthesizeOpIntFloatArg(n, t, inp.Registers[k],
    					pieceSlot)
    			}
    		}
    	}
    
    	// Insert the new values into the head of the block.
    	f.Entry.Values = append(newValues, f.Entry.Values...)
    }
    
    // BuildFuncDebug debug information for f, placing the results
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        }
                    }
                }
            """
    
            when:
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Cannot convert a version catalog entry: 'org.gradle.test:lib:{strictly [3.0, 4.0[; prefer 3.0.5}' to an object of type ModuleVersionSelector. Rich versions are not supported for 'force()'.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    	// for the HPA in the queue then a new request is always dropped. Requests spend resyncPeriod
    	// in queue so HPAs are processed every resyncPeriod.
    	// Request is added here just in case last resync didn't insert request into the queue. This
    	// happens quite often because there is race condition between adding request after resyncPeriod
    	// and removing them from queue. Request can be added by resync before previous request is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param path The path to convert.
         * @return The absolute path.
         */
        String absoluteProjectPath(String path);
    
        /**
         * <p>Converts a name to a project path relative to this project.</p>
         *
         * @param path The path to convert.
         * @return The relative path.
         */
        String relativeProjectPath(String path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    If the resource is not created via `project.resources`, then it may not have a backing file.
    Creating a TAR tree from a resource with no backing file has been deprecated.
    Instead, convert the resource to a file and use `project.tarTree()` on the file.
    To convert the resource to a file you can use a custom task or use dependency management to download the file via a URL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener.go

    		if len(sni) == 0 {
    			return nil
    		}
    		res := sets.NewWithLength[string](len(sni))
    		for _, s := range sni {
    			if s == "*" {
    				continue
    			}
    			res.Insert(s)
    		}
    		return res
    	}
    	if !sniSet(a.sniHosts).Equals(sniSet(b.sniHosts)) {
    		return false
    	}
    
    	// Order doesn't matter. Make sure we properly handle overlapping prefixes though
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top