Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for targeting (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

        const llvm::SetVector<Operation*>& merged_set,
        func::FuncOp loop_body_func) {
      // Find all of the Ops that are part of the forward/backward pass but aren't
      // targeting the SparseCore. Note that we need to include some non-TPU ops
      // that flow out of the forward pass function. Otherwise, they would get
      // absorbed into the non_tpu function which breaks the pipelining
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            if (!role.isSubjectViewAvailable() && !subjectReference.isUntyped()) {
                throw new IllegalStateException(String.format("Cannot bind subject '%s' to role '%s' because it is targeting a type and subject types are not yet available in that role", subjectReference, role));
            }
            return new BindingPredicate(subjectReference.atState(role.getTargetState()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		// API installation happens before we start listening on the handlers,
    		// therefore it is safe to register ResourceInfos here. The handler will block
    		// write requests until the storage versions of the targeting resources are updated.
    		s.StorageVersionManager.AddResourceInfo(resourceInfos...)
    	}
    
    	return nil
    }
    
    // InstallLegacyAPIGroup exposes the given legacy api group in the API.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    One example *all* pom-based libraries already have are the _runtime_ and _compile_ variants, where Gradle can choose only one depending on the task at hand.
    Another of such alternatives discovered often in the Java ecosystems are jars targeting different Java versions.
    
    As example, we look at version 0.7.9 of the asynchronous programming library Quasar published on link:https://repo1.maven.org/maven2/co/paralleluniverse/quasar-core/0.7.9[Maven central].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/rangefunc/rewrite.go

    					return true
    				})
    				if #state3 == abi.RF_PANIC {
    					panic(runtime.panicrangestate(abi.RF_MISSING_PANIC))
    				}
    				#state3 = abi.RF_EXHAUSTED
    				if #next != 0 {
    					// no breaks or continues targeting this loop
    					#state2 = abi.RF_DONE
    					return false
    				}
    				return true
    			})
    	    	if #state2 == abi.RF_PANIC {
    	       		panic(runtime.panicrangestate(abi.RF_MISSING_PANIC))
    	   		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/asm.go

    		if ss.Sym != 0 && ss.Size > limit {
    			addLabelSyms(ss.Sym, limit, ss.Size)
    		}
    	}
    }
    
    // offsetLabelName returns the name of the "label" symbol used for a
    // relocation targeting s+off. The label symbols is used on Darwin/Windows
    // when external linking, so that the addend fits in a Mach-O/PE relocation.
    func offsetLabelName(ldr *loader.Loader, s loader.Sym, off int64) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. src/encoding/xml/xml.go

    		p.Write(esc)
    		last = i
    	}
    	p.WriteString(s[last:])
    }
    
    // Escape is like [EscapeText] but omits the error return value.
    // It is provided for backwards compatibility with Go 1.0.
    // Code targeting Go 1.1 or later should use [EscapeText].
    func Escape(w io.Writer, s []byte) {
    	EscapeText(w, s)
    }
    
    var (
    	cdataStart  = []byte("<![CDATA[")
    	cdataEnd    = []byte("]]>")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  8. internal/event/target/amqp.go

    type AMQPTarget struct {
    	initOnce once.Init
    
    	id         event.TargetID
    	args       AMQPArgs
    	conn       *amqp091.Connection
    	connMutex  sync.Mutex
    	store      store.Store[event.Event]
    	loggerOnce logger.LogOnce
    
    	quitCh chan struct{}
    }
    
    // ID - returns TargetID.
    func (target *AMQPTarget) ID() event.TargetID {
    	return target.id
    }
    
    // Name - returns the Name of the target.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/internal/trace/summary_test.go

    			break
    		}
    		if err != nil {
    			t.Fatalf("failed to process trace %s: %v", testPath, err)
    		}
    		events = append(events, ev)
    	}
    
    	// Test the function.
    	targetg := trace.GoID(86)
    	got := trace.RelatedGoroutinesV2(events, targetg)
    	want := map[trace.GoID]struct{}{
    		trace.GoID(86):  struct{}{}, // N.B. Result includes target.
    		trace.GoID(71):  struct{}{},
    		trace.GoID(25):  struct{}{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/select.go

    	gotoolchainModule  = "golang.org/toolchain"
    	gotoolchainVersion = "v0.0.1"
    
    	// targetEnv is a special environment variable set to the expected
    	// toolchain version during the toolchain switch by the parent
    	// process and cleared in the child process. When set, that indicates
    	// to the child to confirm that it provides the expected toolchain version.
    	targetEnv = "GOTOOLCHAIN_INTERNAL_SWITCH_VERSION"
    
    	// countEnv is a special environment variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top