Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 423 for capture2 (0.25 sec)

  1. tests/integration/ambient/waypoint_test.go

          port: {{.Port}}
          `
    
    			t.ConfigKube().
    				New().
    				Eval(
    					apps.Namespace.Name(),
    					map[string]any{
    						"Service":   Captured,
    						"Namespace": apps.Namespace.Name(),
    						"Port":      apps.Captured.PortForName("http").ServicePort,
    					},
    					config).
    				ApplyOrFail(t, apply.CleanupConditionally)
    
    			retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    						reportCaptured(pass, vars, stmt)
    					}
    
    				}
    			}
    		}
    		return true
    	})
    	return nil, nil
    }
    
    // reportCaptured reports a diagnostic stating a loop variable
    // has been captured by a func literal if checkStmt has escaping
    // references to vars. vars is expected to be variables updated by a loop statement,
    // and checkStmt is expected to be a statements from the body of a func literal in the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      RevivedObjects revived_objects;
      TF_RETURN_IF_ERROR(partially_revived_objects.Build(
          context, bundle.saved_object_graph(), &revived_objects));
    
      // Revive function library functions as concrete functions without captures.
      // This is necessary because object graph functions may refer to functions
      // _not_ in the object graph: A while loop, for example, will create two
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. tests/integration/ambient/cnirepair/main_test.go

    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    )
    
    type EchoDeployments struct {
    	// Namespace echo apps will be deployed
    	Namespace namespace.Instance
    	// Captured echo service
    	Captured echo.Instances
    	// Uncaptured echo Service
    	Uncaptured echo.Instances
    	// Sidecar echo services with sidecar
    	Sidecar echo.Instances
    
    	// All echo services
    	All echo.Instances
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

            BeforeExecutionState thisExecution,
            IncrementalInputProperties incrementalInputProperties
        ) {
            // Capture changes in execution outcome
            ChangeContainer previousSuccessState = new PreviousSuccessChanges(
                lastExecution.isSuccessful());
    
            // Capture changes to implementation
    
            // After validation, the current implementations and previous implementations can't be unknown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/testdata/harness.go

    }
    
    // This test is designed to ensure that write errors are properly
    // handled by the code that writes out coverage data. It repeatedly
    // invokes the 'emit to writer' apis using a specially crafted writer
    // that captures the total number of expected writes, then replays the
    // execution N times with a manufactured write error at the
    // appropriate spot.
    func emitToFailingWriter() {
    	log.SetPrefix("emitToFailingWriter: ")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. releasenotes/notes/50804.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 50736
    releaseNotes:
    - |
      **Added** Allow pods to be opted out of ambient capture using the `istio.io/dataplane-mode=none` label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 387 bytes
    - Viewed (0)
  8. tensorflow/c/tf_status_helper.cc

                          TF_Message(tf_status));
      TF_ForEachPayload(
          tf_status,
          [](const char* key, const char* value, void* capture) {
            absl::Status* status = static_cast<absl::Status*>(capture);
            status->SetPayload(key, absl::Cord(absl::string_view(value)));
          },
          &status);
      return status;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingManagerInternal.java

         */
        LoggingManagerInternal captureSystemSources();
    
        /**
         * Sets the log level to capture stdout at. Does not enable capture.
         */
        @Override
        LoggingManagerInternal captureStandardOutput(LogLevel level);
    
        /**
         * Sets the log level to capture stderr at. Does not enable capture.
         */
        @Override
        LoggingManagerInternal captureStandardError(LogLevel level);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/TypesTest.java

        ParameterizedType ourType =
            Types.newParameterizedTypeWithOwner(Map.class, Entry.class, String.class, int[][].class);
    
        new EqualsTester()
            .addEqualityGroup(jvmType, ourType)
            .addEqualityGroup(new TypeCapture<Entry<String, String>>() {}.capture())
            .addEqualityGroup(new TypeCapture<Map<String, Integer>>() {}.capture())
            .testEquals();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top