Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for reflectively (0.16 sec)

  1. src/internal/trace/order.go

    	// This event indicates that a goroutine is effectively
    	// being created out of a cgo callback. Such a goroutine
    	// is 'created' in the syscall state.
    	if err := validateCtx(curCtx, event.SchedReqs{Thread: event.MustHave, Proc: event.MayHave, Goroutine: event.MustNotHave}); err != nil {
    		return curCtx, false, err
    	}
    	// This goroutine is effectively being created. Add a state for it.
    	newgid := GoID(ev.args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // puts the diff in the `patch` associated with `key`
    // key is the key associated with originalValue and modifiedValue.
    // originalValue, modifiedValue are the old and new value respectively.They are both maps
    // patch is the patch map that contains key and the updated value, and it is the parent of originalValue, modifiedValue
    // diffOptions contains multiple options to control how we do the diff.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_utils_test.go

    		}
    	}
    }
    
    func TestNonController(t *testing.T) {
    	testCases := []struct {
    		name string
    		refs []metav1.OwnerReference
    		// The set and pod objets will be created with names "set" and "pod", respectively.
    		setUID        types.UID
    		podUID        types.UID
    		nonController bool
    	}{
    		{
    			// API validation should prevent two controllers from being set,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  4. configure.py

      write_action_env_to_bazelrc('ANDROID_NDK_VERSION', ndk_version)
    
      # Now grab the NDK API level to use. Note that this is different from the
      # SDK API level, as the NDK API level is effectively the *min* target SDK
      # version.
      meta = open(os.path.join(android_ndk_home_path, 'meta/platforms.json'))
      platforms = json.load(meta)
      meta.close()
      aliases = platforms['aliases']
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        # Many test cases for quantization involve creating and saving the input
        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            protocolsCopy.remove(Protocol.SPDY_3)
    
            if (protocolsCopy != this.protocols) {
              this.routeDatabase = null
            }
    
            // Assign as an unmodifiable list. This is effectively immutable.
            this.protocols = Collections.unmodifiableList(protocolsCopy)
          }
    
        /**
         * Sets the verifier used to confirm that response certificates apply to requested hostnames for
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    	}
    	got1, got2 := b1.String(), b2.String()
    	if got1 != want {
    		t.Fatalf(`Template "foo" rendered %q, want %q`, got1, want)
    	}
    	if got1 != got2 {
    		t.Fatalf(`Template "foo" and "bar" rendered %q and %q respectively, expected equal values`, got1, got2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

    // Instead we want {S,&,X} to denote the infinite list [S, S&X,
    // S&X&X',S&X&X'&X'', ...] where X, X', X'' are predicates that assert Cond is
    // true on iteration 0, 1, 2 respectively.  This is made more precise in the
    // comment on the AndRecurrence class.
    //
    // The general algorithm that deals with cycles does two topological-order
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. .bazelrc

    build:tf_public_macos_cache_push --config=tf_public_macos_cache --remote_upload_local_results=true --google_default_credentials
    
    # END TF CACHE HELPER OPTIONS
    # BEGIN TF TEST SUITE OPTIONS
    # These are convenience config options that effectively declare TF's CI test suites. Look
    # at the scripts of ci/official/ to see how TF's CI uses them.
    
    # LIBTENSORFLOW TESTS are for building Libtensorflow archives. These are CUDA/CPU-agnostic.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	endpointSlicesSynced bool
    	servicesSynced       bool
    	initialized          int32
    	syncRunner           *async.BoundedFrequencyRunner // governs calls to syncProxyRules
    	// These are effectively const and do not need the mutex to be held.
    	hostname string
    	nodeIP   net.IP
    	recorder events.EventRecorder
    
    	serviceHealthServer healthcheck.ServiceHealthServer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top