Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 124 for relocs (0.22 sec)

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

    			}
    			if cSect.Addr != 0 {
    				sect.Addr = cSect.Addr
    			}
    		} else {
    			if sect.Offset != 0 {
    				sect.Offset += uint32(deltaOffset)
    			}
    			if sect.Reloff != 0 {
    				sect.Reloff += uint32(deltaOffset)
    			}
    		}
    		if err := r.WriteAt(sectOffset, &sect); err != nil {
    			return err
    		}
    		sectOffset += sectSize
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

    // tensorflow::kImportModelDefaultGraphFuncName
    static const char kImportModelDefaultGraphFuncName[] = "main";
    
    // Please refer to the TFG dialect description for the list of used attributes.
    // Belows are the attributes in TFE.
    // TFE Arguments and Results (Got from "_Arg",
    // "_Retval", .etc)
    //  NodeDef.device <-> "tf.device"
    //  NodeDef.attr <-> "tf."
    //
    // TFE general operations
    //  NodeDef.device <-> "device"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    		CertFile:      c.CertFile,
    		KeyFile:       c.KeyFile,
    		TrustedCAFile: c.TrustedCAFile,
    	}
    	tlsConfig, err := tlsInfo.ClientConfig()
    	if err != nil {
    		return nil, err
    	}
    	// NOTE: Client relies on nil tlsConfig
    	// for non-secure connections, update the implicit variable
    	if len(c.CertFile) == 0 && len(c.KeyFile) == 0 && len(c.TrustedCAFile) == 0 {
    		tlsConfig = nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        /**
         * Tries to resolve [fqName] into available extension callables (functions or properties)
         * prefixed with a suitable extension receiver type (like in `Foo.bar`, or `foo.Foo.bar`).
         *
         * Relies on the fact that in such references only the last qualifier refers to the
         * actual extension callable, and the part before that refers to the receiver type (either fully
         * or partially qualified).
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    	}
    
    	return out
    }
    
    func (cl *Client) allKinds() map[config.GroupVersionKind]kclient.Untyped {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	return maps.Clone(cl.kinds)
    }
    
    func (cl *Client) kind(r config.GroupVersionKind) (kclient.Untyped, bool) {
    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	ch, ok := cl.kinds[r]
    	return ch, ok
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

        // does not impact recency ordering
        Set<Entry<K, V>> es = entrySet;
        return (es != null) ? es : (entrySet = new EntrySet(this));
      }
    
      /**
       * Custom Entry class used by EntryIterator.next(), that relays setValue changes to the underlying
       * map.
       */
      private final class WriteThroughEntry implements Entry<K, V> {
        final K key;
        V value;
    
        WriteThroughEntry(K key, V value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. src/net/textproto/reader_test.go

    	n := testing.AllocsPerRun(200, func() {
    		if x, _ := canonicalMIMEHeaderKey(b); x != want {
    			t.Fatalf("canonicalMIMEHeaderKey(%q) = %q; want %q", b, x, want)
    		}
    	})
    	if n > 0 {
    		t.Errorf("canonicalMIMEHeaderKey allocs = %v; want 0", n)
    	}
    }
    
    func TestIssue46363(t *testing.T) {
    	// Regression test for data race reported in issue 46363:
    	// ReadMIMEHeader reads commonHeader before commonHeader has been initialized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. docs/recipes.md

        ```kotlin
        if (response.responseCount >= 3) {
          return null // If we've failed 3 times, give up.
        }
        ```
    
        This above code relies on this `responseCount` extension val:
    
        ```kotlin
        val Response.responseCount: Int
          get() = generateSequence(this) { it.priorResponse }.count()
        ```
    === ":material-language-java: Java"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

                // We cannot reference the main source set lazily (via a callable) since the IntelliJ model builder
                // relies on the main source set being created before the tests. So, this code here cannot live in the
                // JvmTestSuitePlugin and must live here, so that we can ensure we register this test suite after we've
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. docs/bucket/replication/DESIGN.md

    ## Overview
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
Back to top